summary refs log tree commit diff
path: root/synapse/storage/data_stores (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'develop' of github.com:matrix-org/synapse into ↵Erik Johnston2019-10-3011-81/+193
|\ | | | | | | erikj/split_out_persistence_store
| * Port receipt and read markers to async/waitErik Johnston2019-10-291-4/+3
| |
| * Merge pull request #6263 from matrix-org/erikj/caches_return_deferredsErik Johnston2019-10-291-1/+1
| |\ | | | | | | Quick fix to ensure cache descriptors always return deferreds
| | * Quick fix to ensure cache descriptors always return deferredsErik Johnston2019-10-281-1/+1
| | |
| * | Merge branch 'release-v1.5.0' of github.com:matrix-org/synapse into developErik Johnston2019-10-291-4/+8
| |\ \ | | |/ | |/|
| | * Make room directory search case insensitiveErik Johnston2019-10-291-4/+8
| | |
| * | Convert EventContext to attrs (#6218)Richard van der Hoff2019-10-281-1/+6
| | | | | | | | | | | | * make EventContext use an attr
| * | Merge pull request #6253 from matrix-org/uhoreg/e2e_backup_delete_keysHubert Chathi2019-10-252-0/+33
| |\ \ | | | | | | | | delete keys when deleting backup versions
| | * | delete keys when deleting backupsHubert Chathi2019-10-242-0/+33
| | | |
| * | | Merge branch 'release-v1.5.0' of github.com:matrix-org/synapse into developErik Johnston2019-10-251-67/+67
| |\ \ \ | | | |/ | | |/|
| | * | Fix /keys/query API on workers.Erik Johnston2019-10-251-67/+67
| | |/ | | | | | | | | | | | | The necessary getters were added only to the master store and not the worker stores.
| * | Merge pull request #6251 from matrix-org/michaelkaye/debug_guard_loggingErik Johnston2019-10-251-3/+1
| |\ \ | | | | | | | | Reduce debug logging overhead
| | * | Address codestyle concernsMichael Kaye2019-10-241-3/+1
| | | |
| | * | use %r to __repr__ objectsMichael Kaye2019-10-241-1/+1
| | |/ | | | | | | | | | This avoids calculating __repr__ unless we are going to log.
| * / Make user/room stats log line less verbose.Michael Kaye2019-10-241-1/+1
| |/
| * Move schema delta files to the correct data store.Erik Johnston2019-10-242-0/+73
| | | | | | | | They were put in the global schema delta directory due to a bad merge.
* | Review commentsErik Johnston2019-10-301-5/+14
| |
* | Add DataStores and Storage classes.Erik Johnston2019-10-231-0/+12
| |
* | Move persist_events out from main data store.Erik Johnston2019-10-231-634/+67
|/ | | | | | This is in preparation for splitting out of state_groups_state from the main store into it own one, as persisting events depends on calculating state.
* Merge branch 'develop' of github.com:matrix-org/synapse into ↵Erik Johnston2019-10-221-11/+37
| | | | erikj/refactor_stores
* Delete background_update table creation in main data_storeErik Johnston2019-10-221-21/+0
|
* Merge branch 'develop' of github.com:matrix-org/synapse into ↵Erik Johnston2019-10-223-11/+262
| | | | erikj/refactor_stores
* Move storage classes into a main "data store".Erik Johnston2019-10-21230-0/+31099
This is in preparation for having multiple data stores that offer different functionality, e.g. splitting out state or event storage.