summary refs log tree commit diff
path: root/synapse/storage (follow)
Commit message (Expand)AuthorAgeFilesLines
* Create a new stream_id per presence updateErik Johnston2016-02-231-6/+9
* Merge pull request #582 from matrix-org/erikj/presenceErik Johnston2016-02-1910-65/+211
|\
| * Close cursorErik Johnston2016-02-181-0/+1
| * Remove unused param from get_max_tokenErik Johnston2016-02-186-13/+11
| * Prefix TS fields with _tsErik Johnston2016-02-183-16/+17
| * Initial cutErik Johnston2016-02-175-55/+201
* | Remove dead code for setting device specific rules.Mark Haines2016-02-182-7/+6
* | Merge branch 'develop' into daniel/roomcleanupincrementalDaniel Wagner-Hall2016-02-171-82/+86
|\|
| * Make adding push rules idempotentMark Haines2016-02-161-82/+86
* | Respond to federated invite with non-empty contextDaniel Wagner-Hall2016-02-171-4/+4
|/
* Fix SYN-627, events are in incorrect room in /syncErik Johnston2016-02-111-1/+1
* Return events in correct order for /eventsErik Johnston2016-02-111-8/+11
* 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
* Merge pull request #568 from matrix-org/erikj/unread_notifErik Johnston2016-02-102-39/+32
|\
| * Rename functionsErik Johnston2016-02-102-4/+4
| * Atomically persit push actions when we persist the eventErik Johnston2016-02-092-39/+32
* | Change a log from debug to infoErik Johnston2016-02-091-1/+1
|/
* Invalidate get_last_receipt_event_id_for_user cacheErik Johnston2016-02-091-0/+5
* Don't load all ephemeral state for a room on every syncErik Johnston2016-02-091-0/+14
* Fix up logcontextsErik Johnston2016-02-084-29/+37
* Allocate guest user IDs numericcallyDaniel Wagner-Hall2016-02-051-0/+36
* Actually return something sensibleErik Johnston2016-02-031-1/+1
* We return dicts now.Erik Johnston2016-02-031-1/+1
* Add descriptionsErik Johnston2016-02-034-1/+5
* Merge pull request #554 from matrix-org/erikj/event_pushErik Johnston2016-02-033-16/+64
|\
| * Change event_push_actions_rm_tokens schemaErik Johnston2016-02-033-16/+64
* | Simplify get_roomsErik Johnston2016-02-031-77/+7
* | Merge branch 'develop' of github.com:matrix-org/synapse into erikj/public_roo...Erik Johnston2016-02-036-36/+42
|\|
| * Fix flake8 warnings for new flake8Daniel Wagner-Hall2016-02-026-9/+12
| * s/get_room_changes_for_user/get_membership_changes_for_user/Erik Johnston2016-02-021-2/+2
| * Fetch events in a separate transaction.Erik Johnston2016-02-021-26/+29
* | Unused importErik Johnston2016-02-031-1/+1
* | Change the way we do public room list fetchingErik Johnston2016-02-022-1/+17
|/
* Order things correctlyErik Johnston2016-02-011-0/+4
* Switch over /events to use per room cachesErik Johnston2016-02-011-2/+2
* Merge pull request #543 from matrix-org/erikj/syncErik Johnston2016-02-013-0/+15
|\
| * Cache get_room_changes_for_userErik Johnston2016-01-293-0/+15
* | Only use room_ids if in get_room_events_stream if is_guestErik Johnston2016-02-011-5/+0
|/
* Invalidate _account_data_stream_cache correctlyErik Johnston2016-01-291-0/+4
* Comment. Remove superfluous order byErik Johnston2016-01-291-1/+3
* Don't prefill account dataErik Johnston2016-01-291-8/+1
* Actually use cacheErik Johnston2016-01-291-7/+13
* Max is not a functionErik Johnston2016-01-291-1/+1
* Convert param styleErik Johnston2016-01-291-0/+3
* Prefill stream change cachesErik Johnston2016-01-293-18/+48
* Bump AccountDataAndTagsChangeCache sizeErik Johnston2016-01-291-1/+1
* Merge pull request #536 from matrix-org/erikj/syncErik Johnston2016-01-296-74/+218
|\
| * Amalgamate tags and account data stream cachesErik Johnston2016-01-282-12/+9
| * Don't use defer.returnValueErik Johnston2016-01-281-1/+1
| * Add events indexErik Johnston2016-01-281-0/+16
| * Change name and doc has_entity_changedErik Johnston2016-01-283-3/+3
| * Cache tags and account dataErik Johnston2016-01-285-10/+42
| * Ensure keys to RoomStreamChangeCache are intsErik Johnston2016-01-281-5/+6
| * Invalidate caches properly. Remove unused argErik Johnston2016-01-283-8/+13
| * Merge branch 'develop' of github.com:matrix-org/synapse into erikj/syncErik Johnston2016-01-281-18/+9
| |\
| * | Allow paginating backwards from stream tokenErik Johnston2016-01-281-2/+14
| * | Return correct type of tokenErik Johnston2016-01-281-3/+6
| * | Merge branch 'develop' of github.com:matrix-org/synapse into erikj/syncErik Johnston2016-01-281-1/+1
| |\ \
| * | | PEP8Erik Johnston2016-01-273-6/+9
| * | | Use the same path for incremental with gap or without gapErik Johnston2016-01-272-4/+3
| * | | Add cache to room streamErik Johnston2016-01-273-62/+138
* | | | Cache filtersErik Johnston2016-01-281-1/+2
| |_|/ |/| |
* | | Merge pull request #534 from matrix-org/erikj/setupErik Johnston2016-01-287-89/+74
|\ \ \ | |_|/ |/| |
| * | Clean up a bit. Add commentErik Johnston2016-01-281-18/+9
| |/
| * Merge branch 'develop' of github.com:matrix-org/synapse into erikj/setupErik Johnston2016-01-271-1/+2
| |\
| * | Add a Homeserver.setup method.Erik Johnston2016-01-267-89/+83
* | | Up get_rooms_for_user cache sizeErik Johnston2016-01-281-1/+1
| |/ |/|
* | Fix adding push rules relative to other rulesMark Haines2016-01-271-1/+2
|/
* Merge pull request #525 from matrix-org/erikj/select_manyErik Johnston2016-01-253-60/+110
|\
| * Guard against empty iterablesErik Johnston2016-01-251-0/+6
| * Correct docstringErik Johnston2016-01-251-1/+0
| * Implement a _simple_select_many_batchErik Johnston2016-01-253-60/+105
* | Merge pull request #527 from matrix-org/erikj/push_cacheErik Johnston2016-01-251-0/+1
|\ \
| * | Push: Use storage apis that are cachedErik Johnston2016-01-251-0/+1
| |/
* / Add index to event_push_actionsErik Johnston2016-01-251-0/+1
|/
* Overlay the push_rules_enabled map for users, otherwise they won't be able to...David Baker2016-01-221-0/+29
* Make LRU cache not default to treecache & add options to use itDavid Baker2016-01-221-1/+1
* Use new invalidate_many cache invalidation to invalidate the event_push_actio...David Baker2016-01-221-4/+15
* Cache get_unread_event_push_actions_by_room_for_userErik Johnston2016-01-211-1/+2
* peppateDavid Baker2016-01-201-3/+2
* Add index by user id on receipts_linearizedDavid Baker2016-01-201-0/+18
* Add storage function to get all receipts for a user. Also add some cache inva...David Baker2016-01-201-21/+34
* Add regex cache. Only caculate push actions for users that have sent read rec...Erik Johnston2016-01-191-1/+13
* Return highlight_count in /syncErik Johnston2016-01-191-2/+3
* Remove dead codeErik Johnston2016-01-181-22/+1
* Make unit tests workErik Johnston2016-01-181-1/+1
* Make notifications go quickerErik Johnston2016-01-182-4/+45
* Allow filtering events for multiple users at onceErik Johnston2016-01-181-0/+13
* Require ID and as_token be unique for ASsDaniel Wagner-Hall2016-01-141-1/+25
* Merge pull request #494 from matrix-org/daniel/2Daniel Wagner-Hall2016-01-141-0/+1
|\
| * Don't start server if ASes are invalidly configuredDaniel Wagner-Hall2016-01-131-0/+1
* | Merge pull request #493 from matrix-org/daniel/1Daniel Wagner-Hall2016-01-141-59/+0
|\ \
| * | Delete unused codeDaniel Wagner-Hall2016-01-131-59/+0
| |/
* / Rename 'user_name' to 'user_id' in push to make it consistent with the rest o...Mark Haines2016-01-132-38/+38
|/
* Merge remote-tracking branch 'origin/erikj/bulk_get_push_rules' into markjh/t...Mark Haines2016-01-131-18/+8
|\
| * bulk_get_push_rules should handle empty listsErik Johnston2016-01-131-21/+13
* | Delete the table objects from TransactionStoreMark Haines2016-01-131-58/+10
* | Remove the RoomsTable objectMark Haines2016-01-131-13/+3
* | Remove the PushersTable and EventPushActionsTable objectsMark Haines2016-01-122-14/+6
* | Remove the PushRuleTable and PushRuleEnableTable objectsMark Haines2016-01-121-50/+33
|/
* Postgres doesn't like booleansDavid Baker2016-01-111-2/+2
* Remove rogue 'admin'David Baker2016-01-111-1/+1
* Merge pull request #456 from matrix-org/store_event_actionsDavid Baker2016-01-086-11/+230
|\
| * This comma is actually importantDavid Baker2016-01-071-1/+1
| * Merge remote-tracking branch 'origin/develop' into store_event_actionsDavid Baker2016-01-061-1/+10
| |\
| * | Adding is_guest here won't work because it just constructs a dict of uid -> p...David Baker2016-01-061-1/+1
| * | Delete notifications for redacted eventsDavid Baker2016-01-061-0/+12
| * | Add schema change file for is_guest flagDavid Baker2016-01-061-0/+22
| * | Add is_guest flag to users db to track whether a user is a guest user or not....David Baker2016-01-063-13/+31
| * | Merge remote-tracking branch 'origin/develop' into store_event_actionsDavid Baker2016-01-053-9/+39
| |\ \
| * | | = not == in sqlDavid Baker2016-01-041-1/+1
| * | | Rename event-actions to event_push_actions as per PR requestDavid Baker2016-01-043-14/+14
| * | | Address minor PR issuesDavid Baker2016-01-043-16/+4
| * | | Insert push actions in a single db query rather than one per user/profile_tagDavid Baker2015-12-221-13/+18
| * | | Add bulk push rule evaluator which actually still evaluates rules one by one,...David Baker2015-12-221-0/+41
| * | | Merge remote-tracking branch 'origin/develop' into store_event_actionsDavid Baker2015-12-213-14/+81
| |\ \ \
| * | | | pep8David Baker2015-12-211-6/+6
| * | | | Make unread notification count sending work: put the correct count in increme...David Baker2015-12-181-9/+12
| * | | | still very WIP, but now sends unread_notifications_count in the room object o...David Baker2015-12-162-4/+54
| * | | | Save event actions to the dbDavid Baker2015-12-103-0/+68
| * | | | Very first cut of calculating actions for events as they come in. Doesn't sto...David Baker2015-12-101-0/+12
* | | | | copyrightsMatthew Hodgson2016-01-0785-85/+85
| |_|_|/ |/| | |
* | | | Log when we skip daily messagesDaniel Wagner-Hall2016-01-061-1/+10
| |_|/ |/| |
* | | Allow guests to upgrade their accountsDaniel Wagner-Hall2016-01-053-9/+39
| |/ |/|
* | Fix 500 error when back-paginating search resultsRichard van der Hoff2015-12-171-2/+4
* | Merge branch 'release-v0.12.0' into developMark Haines2015-12-161-1/+1
|\ \
| * | Allow users to change which account a 3pid is bound toMark Haines2015-12-151-1/+1
* | | Merge branch 'release-v0.12.0' into developMark Haines2015-12-141-0/+5
|\| |
| * | Skip events that where the body, name or topic isn't a string when back popul...Mark Haines2015-12-141-0/+5
* | | Fix typoDaniel Wagner-Hall2015-12-141-1/+1
* | | Fix typo in sql for full text search on sqlite3Mark Haines2015-12-141-1/+1
* | | Merge branch 'release-v0.12.0' into developMark Haines2015-12-121-4/+7
|\| |
| * | Add caches for whether a room has been forgotten by a userMark Haines2015-12-101-4/+7
| |/
* | Include approximate count of search resultsErik Johnston2015-12-111-2/+54
* | Use more efficient query formErik Johnston2015-12-111-8/+13
|/
* Track the time spent in the database per request.Mark Haines2015-12-072-3/+8
* Bump schema version.Mark Haines2015-12-045-24/+37
* Merge pull request #414 from matrix-org/erikj/if_not_existsErik Johnston2015-12-031-1/+1
|\
| * Older versions of SQLite don't like IF NOT EXISTS in virtual tablesErik Johnston2015-12-021-1/+1
* | Just replace the table definition with the one from full_schema 16David Baker2015-12-021-11/+10
* | Fix schema delta 15 on postgres in the very unlikley event that anyone upgrad...David Baker2015-12-021-1/+1
* | Merge pull request #412 from matrix-org/erikj/searchErik Johnston2015-12-021-11/+36
|\ \ | |/ |/|
| * Throw if unrecognized DB typeErik Johnston2015-12-021-1/+4
| * Fix so highlight matching works againErik Johnston2015-12-021-8/+13
| * Remove deuplication. Add comment about regex.Erik Johnston2015-12-021-21/+11
| * Search: Add prefix matching supportErik Johnston2015-12-021-5/+32
* | Add API for setting account_data globaly or on a per room basisMark Haines2015-12-014-2/+238
|/
* Allow paginating search ordered by recentsErik Johnston2015-11-303-16/+159
* Return words to highlight in search resultsErik Johnston2015-11-271-19/+104
* Fix SQL for postgres againDaniel Wagner-Hall2015-11-231-1/+1
* Fix SQL for postgresDaniel Wagner-Hall2015-11-231-1/+1
* Remove size specifier for database columnDaniel Wagner-Hall2015-11-231-1/+3
* Merge branch 'daniel/forgetrooms' of github.com:matrix-org/synapse into danie...Daniel Wagner-Hall2015-11-192-9/+26
|\
| * Merge branch 'develop' into daniel/forgetroomsPaul "LeoNerd" Evans2015-11-192-9/+26
| |\
| | * Rename the database tableMark Haines2015-11-181-0/+17
| | * s/private_user_data/account_data/Mark Haines2015-11-182-10/+10
* | | Ignore forgotten rooms in v2 syncDaniel Wagner-Hall2015-11-191-1/+1
|/ /
* | Simplify codeDaniel Wagner-Hall2015-11-191-7/+5
* | Apply forgetting properly to historical eventsDaniel Wagner-Hall2015-11-181-2/+32
* | Allow users to forget roomsDaniel Wagner-Hall2015-11-173-1/+61
|/
* Implementation of state rollback in /syncRichard van der Hoff2015-11-131-2/+4
* Fix a few race conditions in the state calculationRichard van der Hoff2015-11-131-0/+14
* Trailing whitespaceErik Johnston2015-11-121-1/+1
* Expand commentErik Johnston2015-11-121-0/+6
* CommentErik Johnston2015-11-121-0/+2
* Fix SQL syntaxErik Johnston2015-11-121-2/+3
* Use a (hopefully) more efficient SQL query for doing recency based room searchErik Johnston2015-11-121-4/+6
* Fix bug where assumed dict was namedtupleErik Johnston2015-11-121-1/+1
* Merge pull request #359 from matrix-org/markjh/incremental_indexingErik Johnston2015-11-114-77/+404
|\
| * Fix param style to work on both sqlite and postgresMark Haines2015-11-111-2/+6
| * Fix the background updateMark Haines2015-11-113-17/+19
| * Use a background task to update databases to use the full text searchMark Haines2015-11-102-80/+28
| * Run the background updates when starting synapse.Mark Haines2015-11-102-10/+58
| * Add background update task for reindexing event searchMark Haines2015-11-091-2/+96
| * Add storage module for tracking background updates.Mark Haines2015-11-092-0/+231
* | Return world_readable and guest_can_join in /publicRoomsDaniel Wagner-Hall2015-11-103-29/+69
* | Merge branch 'develop' into markjh/SYN-513Mark Haines2015-11-091-1/+1
|\ \
| * | fix comedy important missing comma breaking recent-ordered FTS on sqliteMatthew Hodgson2015-11-081-1/+1
| * | add a key existence check to tags_by_room to avoid /events 500'ing when testi...Matthew Hodgson2015-11-061-1/+2
| |/
* / SYN-513: Include updates for rooms that have had all their tags deletedMark Haines2015-11-091-1/+1
|/
* Remove accidentally added ID columnDaniel Wagner-Hall2015-11-061-1/+0
* Error handlingErik Johnston2015-11-051-1/+8
* Merge branch 'develop' of github.com:matrix-org/synapse into erikj/searchErik Johnston2015-11-055-16/+87
|\
| * Open up /events to anonymous users for room events onlyDaniel Wagner-Hall2015-11-054-8/+79
| * Merge branch 'develop' of github.com:matrix-org/synapse into developDaniel Wagner-Hall2015-11-041-2/+1
| |\
| | * Merge branch 'develop' into daniel/removesomeliesMark Haines2015-11-044-32/+272
| | |\
| | * | Remove more unused parametersDaniel Wagner-Hall2015-11-021-2/+1
| * | | Allow guests to register and call /events?room_id=Daniel Wagner-Hall2015-11-041-7/+8
| | |/ | |/|
* | | Implement basic pagination for search resultsErik Johnston2015-11-051-36/+19
* | | Implement order and group byErik Johnston2015-11-041-0/+96
|/ /
* | Merge pull request #343 from matrix-org/erikj/fix_retriesErik Johnston2015-11-031-32/+16
|\ \
| * | Fix broken cache for getting retry times. This meant we retried remote destin...Erik Johnston2015-11-031-32/+16
| |/
* | Merge pull request #335 from matrix-org/markjh/room_tagsMark Haines2015-11-033-0/+256
|\ \ | |/ |/|
| * Spell "deferred" more correctlyMark Haines2015-11-031-1/+1
| * Store room tag content and return the content in the m.tag eventMark Haines2015-11-022-16/+29
| * Merge branch 'develop' into markjh/room_tagsMark Haines2015-11-021-1/+136
| |\
| * | Inform the client of new room tags using v1 /eventsMark Haines2015-10-291-1/+15
| * | Fix pyflakes errorsMark Haines2015-10-281-3/+3
| * | Add APIs for adding and removing tags from roomsMark Haines2015-10-283-0/+229
* | | Add missing columnDaniel Wagner-Hall2015-10-301-1/+1
| |/ |/|
* | DocsErik Johnston2015-10-281-0/+26
* | Add room context apiErik Johnston2015-10-281-1/+110
|/
* Pull out sender when computing search resultsErik Johnston2015-10-231-14/+17
* Implement rank function for SQLite FTSErik Johnston2015-10-233-2/+30
* Actually filter resultsErik Johnston2015-10-221-3/+5
* LESS THANErik Johnston2015-10-221-1/+2
* Use namedtuple as return valueErik Johnston2015-10-221-3/+15
* Limit max number of SQL varsErik Johnston2015-10-221-4/+6
* Merge branch 'develop' of github.com:matrix-org/synapse into erikj/searchErik Johnston2015-10-221-0/+13
|\
| * Merge pull request #316 from matrix-org/markjh/v2_sync_archivedMark Haines2015-10-211-0/+13
| |\
| | * Include banned rooms in the archived section of v2 syncMark Haines2015-10-211-2/+2
| | * Add rooms that the user has left under archived in v2 sync.Mark Haines2015-10-191-0/+13
* | | PEP8Erik Johnston2015-10-221-1/+2
* | | Move FTS to delta 25Erik Johnston2015-10-222-3/+3
|/ /
* | Explicitly check for Sqlite3EngineErik Johnston2015-10-161-2/+5
* | TypingErik Johnston2015-10-161-2/+2
* | Merge branch 'develop' of github.com:matrix-org/synapse into erikj/searchErik Johnston2015-10-161-1/+1
|\|
| * Fix FilteringStore.get_user_filter to work with postgresMark Haines2015-10-161-1/+1
* | Merge branch 'develop' of github.com:matrix-org/synapse into erikj/searchErik Johnston2015-10-161-2/+2
|\|
| * Encode the filter JSON as UTF-8 before storing in the database.Mark Haines2015-10-161-2/+2
* | Explicitly check for Sqlite3EngineErik Johnston2015-10-161-2/+5
* | Add docstringErik Johnston2015-10-161-0/+11
* | Comment on the LIMIT 500Erik Johnston2015-10-161-0/+2
* | Split up run_upgradeErik Johnston2015-10-161-5/+11
* | Merge branch 'develop' of github.com:matrix-org/synapse into erikj/searchErik Johnston2015-10-151-0/+14
|\|
| * Merge pull request #305 from matrix-org/markjh/v2_sync_apiMark Haines2015-10-141-0/+14
| |\
| | * Merge branch 'develop' into markjh/v2_sync_apiMark Haines2015-10-144-377/+399
| | |\
| | * | Add a get_invites_for_user method to the storage to find out the rooms a user...Mark Haines2015-10-131-0/+14
| * | | Remove unused room_id argErik Johnston2015-10-141-5/+5
| | |/ | |/|
* | | Fix to work with SQLiteErik Johnston2015-10-141-4/+11
* | | Add paranoia limitErik Johnston2015-10-131-1/+1
* | | Remove constraints in preperation of using filtersErik Johnston2015-10-131-20/+10
* | | Merge branch 'erikj/store_engine' into erikj/searchErik Johnston2015-10-134-3/+3
|\| |
| * | rename schema_prepare to prepare_databaseErik Johnston2015-10-133-2/+2
* | | Add SQLite supportErik Johnston2015-10-131-5/+12
* | | Merge branch 'erikj/store_engine' into erikj/searchErik Johnston2015-10-135-378/+400
|\| |
| * | Expose error more nicelyErik Johnston2015-10-134-5/+2
| * | Split out the schema preparation and update logic into its own moduleErik Johnston2015-10-134-377/+402
| |/
* | Add sqlite schemaErik Johnston2015-10-131-5/+64
* | Filter events to only thsoe that the user is allowed to seeErik Johnston2015-10-121-7/+7
* | Remove unused room_id parameterErik Johnston2015-10-121-6/+5
* | Keep FTS indexes up to date. Only search through rooms currently joinedErik Johnston2015-10-124-2/+32
* | Add basic full text search impl.Erik Johnston2015-10-094-1/+135
|/
* Merge pull request #288 from matrix-org/markjh/unused_definitionsMark Haines2015-09-287-419/+2
|\
| * synapse/storage/state.py: _make_group_id was unusedMark Haines2015-09-231-6/+0
| * Remove unused functions from synapse/storage/signatures.pyMark Haines2015-09-231-112/+0
| * synapse/storage/roommember.py:_get_members_query was unusedMark Haines2015-09-231-6/+0
| * Remove unused functions from synapse/storage/events.pyMark Haines2015-09-231-11/+0
| * Remove unused functions from synapse/storage/event_federation.pyMark Haines2015-09-231-71/+0