summary refs log tree commit diff
path: root/synapse/storage/state.py (follow)
Commit message (Expand)AuthorAgeFilesLines
* Batch fetch _get_state_groups_from_groupsErik Johnston2016-02-101-32/+34
* Use _simple_select_many for _get_state_group_for_eventsErik Johnston2016-02-101-16/+10
* copyrightsMatthew Hodgson2016-01-071-1/+1
* Fix a few race conditions in the state calculationRichard van der Hoff2015-11-131-0/+14
* Remove unused room_id parameterErik Johnston2015-10-121-6/+5
* synapse/storage/state.py: _make_group_id was unusedMark Haines2015-09-231-6/+0
* Actually check if event_id isn't returned by _get_state_groupsErik Johnston2015-08-211-2/+9
* Remove newline because vertical whitespace makes mjark sadErik Johnston2015-08-181-2/+1
* Rejig the code to make it nicerErik Johnston2015-08-181-3/+2
* Ensure we never return a None event from _get_state_for_groupsErik Johnston2015-08-181-3/+8
* Reduce cache size from obscenely large to quite largeErik Johnston2015-08-181-1/+1
* Fix bug where we were leaking None into state event listsErik Johnston2015-08-171-2/+3
* Remove some vertical spaceErik Johnston2015-08-131-36/+9
* Replace list comprehensionErik Johnston2015-08-131-8/+3
* CommentErik Johnston2015-08-121-1/+2
* Explain why we're prefilling dict with NonesErik Johnston2015-08-121-0/+4
* Better variable nameErik Johnston2015-08-121-5/+5
* Split _get_state_for_group_from_cache into twoErik Johnston2015-08-121-32/+53
* Move all the caches into their own package, synapse.util.cachesErik Johnston2015-08-111-1/+4
* CommentsErik Johnston2015-08-111-3/+11
* Fix application of ACLsErik Johnston2015-08-111-3/+3
* Fix state cacheErik Johnston2015-08-111-36/+49
* Clean up StateStoreErik Johnston2015-08-101-62/+11
* Remove unused functionErik Johnston2015-08-101-7/+0
* Do bounds checkErik Johnston2015-08-101-1/+4
* Line lengthErik Johnston2015-08-101-1/+2
* Merge branch 'erikj/cache_varargs_interface' of github.com:matrix-org/synapse...Erik Johnston2015-08-071-1/+0
|\
| * Remove unnecessary cacheErik Johnston2015-08-071-2/+1
* | Batch up various DB requests for event -> stateErik Johnston2015-08-071-77/+142
* | Remove unncessary cacheErik Johnston2015-08-071-1/+0
* | Store absence of state in cacheErik Johnston2015-08-071-6/+16
* | Merge branch 'erikj/cached_keyword_args' of github.com:matrix-org/synapse int...Erik Johnston2015-08-051-3/+2
|\|
| * Add support for using keyword arguments with cached functionsErik Johnston2015-07-271-3/+2
* | Use dictionary cache to do group -> state fetchingErik Johnston2015-08-051-65/+126
* | Add commentErik Johnston2015-08-041-0/+15
* | Speed up event filtering (for ACL) logicErik Johnston2015-08-041-38/+79
|/
* Merge pull request #193 from matrix-org/erikj/bulk_persist_eventErik Johnston2015-07-141-12/+24
|\
| * Add bulk insert events APIErik Johnston2015-06-251-12/+24
* | Add basic impl for room history ACL on GET /messages client APIErik Johnston2015-07-021-2/+61
|/
* Add cache to get_state_groupsErik Johnston2015-06-031-8/+12
* Merge branch 'master' of github.com:matrix-org/synapse into developErik Johnston2015-05-221-1/+24
|\
| * Add a cache for get_current_state with state_keyMark Haines2015-05-211-1/+24
* | Don't fetch prev_content for current_stateErik Johnston2015-05-151-1/+1
* | Make store.get_current_state fetch events asynclyErik Johnston2015-05-151-3/+4
* | Move fetching of events into their own transactionsErik Johnston2015-05-141-2/+0
* | Refactor _get_eventsErik Johnston2015-05-141-1/+1
* | Fetch events from events_id in their own transactionsErik Johnston2015-05-131-5/+5
* | Fetch events in bulkErik Johnston2015-05-131-21/+1
* | Don't fetch redaction and rejection stuff for each event, so we can use index...Erik Johnston2015-05-131-2/+5
* | Temp turn off checking for rejections and redactionsErik Johnston2015-05-131-5/+2
* | defer.gatherResults loopErik Johnston2015-05-131-1/+7
* | Batch fetching of events for state groupsErik Johnston2015-05-131-1/+24
* | Load events for state group seperatelyErik Johnston2015-05-131-3/+9
|/
* Add support for using executemanyErik Johnston2015-05-051-7/+9
* Remove pointless joinErik Johnston2015-04-301-5/+4
* Need more yieldErik Johnston2015-04-301-1/+1
* Add missing paramErik Johnston2015-04-301-1/+1
* Fix up get_current_state and get_room_name_and_aliases queries to parse event...Erik Johnston2015-04-301-16/+19
* Don't use sub queries, it makes postgres sadErik Johnston2015-04-301-11/+5
* Don't needlessly join on state_eventsErik Johnston2015-04-301-3/+2
* For backwards compat, make state_groups.id have a type of int, not varcharErik Johnston2015-04-131-1/+1
* PEP8Erik Johnston2015-04-071-1/+0
* Don't use AUTOINCREMENT, use an in memory versionErik Johnston2015-04-071-3/+3
* Remove uses of REPLACE and ON CONFLICT IGNORE to make the SQL more portable.Erik Johnston2015-03-231-1/+0
* Merge branch 'develop' of github.com:matrix-org/synapse into mysqlErik Johnston2015-03-201-0/+1
|\
| * Rearrange storage modulesErik Johnston2015-03-201-0/+32
* | Rearrange storage modulesErik Johnston2015-03-201-0/+32
* | Convert storage layer to be mysql compatibleErik Johnston2015-03-191-2/+8
|/
* Copy dict of context.current_state before changing it.Erik Johnston2015-03-161-1/+1
* Remove unused functionsMark Haines2015-01-131-6/+0
* Merge pull request #28 from matrix-org/erikj-perfMark Haines2015-01-061-8/+6
|\
| * Remove debug linesErik Johnston2015-01-061-7/+0
| * Add some debug loggingErik Johnston2015-01-061-0/+12
| * Test some ideas that might help performance a bitErik Johnston2014-12-171-8/+1
* | Update copyright noticesMark Haines2015-01-061-1/+1
|/
* Various typos and bug fixes.Erik Johnston2014-12-081-3/+3
* Start making more things use EventContext rather than event.*Erik Johnston2014-12-051-4/+9
* Correctly handle the case where we get an event for an unknown room, which tu...Erik Johnston2014-11-261-1/+1
* Document StateStore and use transactionsErik Johnston2014-11-121-28/+56
* Fix bugs with invites/joins across federatiom.Erik Johnston2014-11-121-3/+6
* Fix bug where we /always/ created a new state groupErik Johnston2014-11-111-7/+2
* Add transaction level logging and timing information. Add a _simple_delete me...Erik Johnston2014-10-281-0/+1
* Use state groups to get current state. Make join dance actually work.Erik Johnston2014-10-171-0/+3
* Begin making auth use event.old_state_eventsErik Johnston2014-10-151-1/+1
* Add missing package storate.stateErik Johnston2014-10-151-0/+97