summary refs log tree commit diff
path: root/synapse/storage/signatures.py (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Move storage classes into a main "data store".Erik Johnston2019-10-211-102/+0
| | | | | This is in preparation for having multiple data stores that offer different functionality, e.g. splitting out state or event storage.
* Replace returnValue with return (#5736)Amber Brown2019-07-231-1/+1
|
* Run black on the rest of the storage module (#4996)Amber Brown2019-04-031-25/+16
|
* Make scripts/ and scripts-dev/ pass pyflakes (and the rest of the codebase ↵Amber Brown2018-10-201-1/+1
| | | | on py3) (#4068)
* Python 3: Convert some unicode/bytes uses (#3569)Amber Brown2018-08-021-1/+1
|
* run isortAmber Brown2018-07-091-3/+5
|
* use memoryview in py3Adrian Tschira2018-05-291-2/+10
| | | | Signed-off-by: Adrian Tschira <nota@notafile.com>
* Stub out broken function only used for cacheErik Johnston2018-03-011-1/+3
|
* Split out SignatureStore and EventFederationStoreErik Johnston2018-03-011-3/+5
|
* User Cursor.__iter__ instead of fetchallErik Johnston2017-03-231-1/+1
| | | | This prevents unnecessary construction of lists
* Remove lru optionErik Johnston2016-08-191-1/+1
|
* Cache get_event_reference_hashesErik Johnston2016-05-311-9/+16
|
* Fix relative imports so they work in both py3 and py27Mark Haines2016-03-081-1/+1
|
* copyrightsMatthew Hodgson2016-01-071-1/+1
|
* Remove unused functions from synapse/storage/signatures.pyMark Haines2015-09-231-112/+0
|
* Remove syutil dependency in favour of smaller single-purpose librariesMark Haines2015-08-241-1/+1
|
* Add bulk insert events APIErik Johnston2015-06-251-12/+16
|
* Make work in both Maria and SQLite. Fix testsErik Johnston2015-04-011-4/+4
|
* Fix unicode database supportErik Johnston2015-03-251-5/+5
|
* Remove uses of REPLACE and ON CONFLICT IGNORE to make the SQL more portable.Erik Johnston2015-03-231-4/+0
|
* Update copyright noticesMark Haines2015-01-061-1/+1
|
* Convert rest and handlers to use new event structureErik Johnston2014-12-041-1/+4
|
* Begin converting things to use the new Event structureErik Johnston2014-12-041-0/+16
|
* Fix pep8 codestyle warningsMark Haines2014-11-201-5/+5
|
* Store all signatures on events rather than just dropping themErik Johnston2014-11-121-9/+15
|
* Start implementing auth chainsErik Johnston2014-11-071-0/+12
|
* Remove unused signature storage methodsErik Johnston2014-10-311-138/+1
|
* Fix SQL so that accepts we may want to persist events twice.Erik Johnston2014-10-301-22/+42
|
* Begin implementing all the PDU storage stuff in Events landErik Johnston2014-10-281-0/+127
|
* fix pyflakes warningsMark Haines2014-10-271-2/+0
|
* Hash the same content covered by the signature when referencing previous ↵Mark Haines2014-10-171-4/+40
| | | | PDUs rather than reusing the PDU content hashes
* Include hashes of previous pdus when referencing themMark Haines2014-10-161-0/+31
|
* Sign outgoing PDUs.Mark Haines2014-10-161-3/+3
|
* Storage for pdu signaturesMark Haines2014-10-141-0/+90