| Commit message (Expand) | Author | Age | Files | Lines |
* | SYN-377: Make sure that the StreamIdGenerator.get_next.__exit__ is called fro... | Mark Haines | 2015-05-12 | 2 | -23/+27 |
* | Prefer to use _simple_*. | Erik Johnston | 2015-05-11 | 1 | -44/+41 |
* | push_rules table expects an 'id' field | Erik Johnston | 2015-05-11 | 2 | -13/+13 |
* | Fix push rule bug: can't insert bool into small int column | Erik Johnston | 2015-05-10 | 1 | -1/+1 |
* | Drop the old table not the new table | Mark Haines | 2015-05-08 | 1 | -1/+1 |
* | Rename unique constraint | Mark Haines | 2015-05-08 | 1 | -1/+1 |
* | Remove unsigned | Mark Haines | 2015-05-08 | 1 | -2/+2 |
* | Bump schema version | Mark Haines | 2015-05-08 | 1 | -1/+1 |
* | Make the timestamps in server_keys_json bigints | Mark Haines | 2015-05-08 | 1 | -0/+32 |
* | Merge branch 'erikj/executemany' of github.com:matrix-org/synapse into erikj/... | Erik Johnston | 2015-05-05 | 5 | -25/+97 |
|\ |
|
| * | And use buffer(...) there as well | Erik Johnston | 2015-05-05 | 1 | -1/+2 |
| * | Merge branch 'develop' of github.com:matrix-org/synapse into erikj/executemany | Erik Johnston | 2015-05-05 | 5 | -24/+87 |
| |\ |
|
| | * | Use buffer(...) when inserting into bytea column | Erik Johnston | 2015-05-05 | 1 | -1/+2 |
| | * | Merge pull request #139 from matrix-org/bugs/SYN-369 | Mark Haines | 2015-05-05 | 4 | -16/+80 |
| | |\ |
|
| | | * | Add some doc-string | Mark Haines | 2015-05-05 | 1 | -0/+4 |
| | | * | Collect the invalidate callbacks on the transaction object rather than passin... | Mark Haines | 2015-05-05 | 7 | -51/+51 |
| | | * | SYN-369: Add comments to the sequence number logic in the cache | Mark Haines | 2015-05-05 | 1 | -0/+7 |
| | | * | Add debug flag in synapse/storage/_base.py for debugging the cache logic by c... | Mark Haines | 2015-05-05 | 1 | -1/+12 |
| | | * | Invalidate the room_member cache if the current state events updates | Mark Haines | 2015-05-05 | 1 | -0/+5 |
| | | * | Missing return for when the event was already persisted | Mark Haines | 2015-05-05 | 1 | -1/+1 |
| | | * | Invalidate the caches from the correct thread | Mark Haines | 2015-05-05 | 6 | -29/+46 |
| | | * | Sequence the modifications to the cache so that selects don't race with inserts | Mark Haines | 2015-05-05 | 1 | -3/+23 |
| * | | | Add a comment about the zip(*[zip(sorted(...),...)]) | Erik Johnston | 2015-05-05 | 1 | -0/+8 |
* | | | | Don't insert without deduplication. In this case we never actually use this t... | Erik Johnston | 2015-05-05 | 1 | -22/+0 |
|/ / / |
|
* | | | Fix indentation | Erik Johnston | 2015-05-05 | 1 | -10/+10 |
* | | | Add support for using executemany | Erik Johnston | 2015-05-05 | 4 | -59/+97 |
|/ / |
|
* / | Don't call 'encode_parameter' no-op | Erik Johnston | 2015-05-05 | 3 | -10/+0 |
|/ |
|
* | Correctly name transaction | Erik Johnston | 2015-05-05 | 1 | -1/+1 |
* | Remove some unused indexes | Erik Johnston | 2015-05-01 | 1 | -0/+18 |
* | user_id now in user_threepids | David Baker | 2015-05-01 | 1 | -3/+3 |
* | Don't use self.execute: it's designed for fetching stuff | David Baker | 2015-05-01 | 1 | -3/+8 |
* | No id field on user | David Baker | 2015-05-01 | 1 | -5/+1 |
* | More missed get_user_by_id API changes | David Baker | 2015-05-01 | 1 | -3/+3 |
* | Cache latest_event_ids_in_room | Erik Johnston | 2015-05-01 | 1 | -1/+4 |
* | Don't lock user_ips table for upsert. | Erik Johnston | 2015-05-01 | 2 | -4/+10 |
* | Fix bug where we reconnected to the database on every query. | Erik Johnston | 2015-05-01 | 2 | -1/+2 |
* | Split a storage function in two so that we don't have to do extra work. | Erik Johnston | 2015-05-01 | 1 | -0/+11 |
* | Remove pointless join | Erik Johnston | 2015-04-30 | 1 | -5/+4 |
* | Fix broken SQL | Erik Johnston | 2015-04-30 | 1 | -1/+1 |
* | Need more yield | Erik Johnston | 2015-04-30 | 1 | -1/+1 |
* | Add missing param | Erik Johnston | 2015-04-30 | 1 | -1/+1 |
* | More join conditions | Erik Johnston | 2015-04-30 | 1 | -2/+6 |
* | Add more conditions on JOINs to make postgres go a little faster. | Erik Johnston | 2015-04-30 | 2 | -4/+6 |
* | Fix up get_current_state and get_room_name_and_aliases queries to parse event... | Erik Johnston | 2015-04-30 | 2 | -32/+30 |
* | Add get_rooms_for_user cache | Erik Johnston | 2015-04-30 | 1 | -0/+2 |
* | Don't use sub queries, it makes postgres sad | Erik Johnston | 2015-04-30 | 1 | -11/+5 |
* | SYN-367: Use upsert rather than insert_or_replace | Mark Haines | 2015-04-30 | 1 | -2/+6 |
* | Don't needlessly join on state_events | Erik Johnston | 2015-04-30 | 2 | -6/+4 |
* | Make simple query rather than long one and then throw away half the results | Erik Johnston | 2015-04-30 | 1 | -0/+10 |
* | Correctly decode, for sqlite and postgres, rows from pushers table | Erik Johnston | 2015-04-29 | 1 | -19/+24 |
* | pushkey' are also bytes. | Erik Johnston | 2015-04-29 | 1 | -8/+17 |
* | Typo | Erik Johnston | 2015-04-29 | 1 | -1/+1 |
* | Also remove yield from within lock in the other generator | Erik Johnston | 2015-04-29 | 1 | -8/+6 |
* | Fix deadlock in id_generators. No idea why this was an actual deadlock. | Erik Johnston | 2015-04-29 | 1 | -14/+16 |
* | Actually return rows | Erik Johnston | 2015-04-29 | 1 | -0/+2 |
* | Typo, args wrong way round | Erik Johnston | 2015-04-29 | 1 | -4/+1 |
* | Decode buffers in same thread | Erik Johnston | 2015-04-29 | 1 | -13/+19 |
* | We store pusher data as bytes | Erik Johnston | 2015-04-29 | 1 | -2/+2 |
* | Decode the data json in the storage layer (was moved but this part was missed) | David Baker | 2015-04-29 | 1 | -0/+9 |
* | Oops, update the contraint too | David Baker | 2015-04-29 | 1 | -1/+1 |
* | Be more postgressive | David Baker | 2015-04-29 | 2 | -4/+4 |
* | Be postgressive | David Baker | 2015-04-29 | 1 | -4/+3 |
* | Oops, forgot the schema delta file | David Baker | 2015-04-29 | 1 | -0/+10 |
* | txn.execute doesn't return cursors | Erik Johnston | 2015-04-29 | 1 | -4/+4 |
* | txn.execute doesn't return cursors | Erik Johnston | 2015-04-29 | 1 | -2/+2 |
* | Fix invalid SQL to work in postgres land | Erik Johnston | 2015-04-29 | 1 | -4/+6 |
* | pushers table requires an access_token | Erik Johnston | 2015-04-29 | 1 | -0/+1 |
* | We can't use REPLACE when upgrading databases now we have postgres | Erik Johnston | 2015-04-29 | 1 | -1/+2 |
* | Merge pull request #129 from matrix-org/key_distribution | Erik Johnston | 2015-04-29 | 3 | -1/+90 |
|\ |
|
| * | bump database schema version | Mark Haines | 2015-04-29 | 2 | -1/+1 |
| * | Use bytea rather than BLOB | Mark Haines | 2015-04-29 | 1 | -1/+1 |
| * | Merge branch 'develop' into key_distribution | Mark Haines | 2015-04-29 | 60 | -734/+2046 |
| |\ |
|
| * | | And don't bump the schema version unnecessarily | Mark Haines | 2015-04-28 | 1 | -1/+1 |
| * | | Add server_keys.sql to the current delta rather than creating a new delta | Mark Haines | 2015-04-28 | 1 | -0/+0 |
| * | | Merge branch 'develop' into key_distribution | Mark Haines | 2015-04-24 | 2 | -0/+28 |
| |\ \ |
|
| * | | | Implement remote key lookup api | Mark Haines | 2015-04-22 | 1 | -13/+22 |
| * | | | Add methods for storing and retrieving the raw key json | Mark Haines | 2015-04-15 | 2 | -3/+59 |
| * | | | Return a sha256 fingerprint rather than the entire tls certificate | Mark Haines | 2015-04-14 | 2 | -1/+25 |
* | | | | Make postgres database error slightly more helpful | Erik Johnston | 2015-04-29 | 1 | -1/+2 |
* | | | | Use __all__ instead of assert to stop pyflakes from warning about unused impo... | Erik Johnston | 2015-04-29 | 1 | -2/+3 |
* | | | | Appease PEP8 | Erik Johnston | 2015-04-29 | 1 | -0/+2 |
* | | | | Check that postgres database has correct charset set | Erik Johnston | 2015-04-29 | 4 | -0/+33 |
| |_|/
|/| | |
|
* | | | Merge branch 'develop' of github.com:matrix-org/synapse into postgres | Erik Johnston | 2015-04-28 | 4 | -74/+133 |
|\ \ \ |
|
| * \ \ | Merge pull request #126 from matrix-org/csauth | Mark Haines | 2015-04-28 | 3 | -55/+124 |
| |\ \ \ |
|
| | * | | | pep8 | David Baker | 2015-04-17 | 1 | -1/+1 |
| | * | | | Password reset, finally. | David Baker | 2015-04-17 | 1 | -1/+15 |
| | * | | | Add endpoint to get threepids from server | David Baker | 2015-04-17 | 1 | -0/+11 |
| | * | | | pep8 | David Baker | 2015-04-17 | 1 | -1/+1 |
| | * | | | make add3pid servlet work | David Baker | 2015-04-17 | 1 | -0/+11 |
| | * | | | Merge branch 'develop' into csauth | David Baker | 2015-04-17 | 5 | -196/+373 |
| | |\| | |
|
| | * | | | Delete pushers when changing password | David Baker | 2015-03-26 | 1 | -35/+10 |
| | * | | | Allow multiple pushers for a single app ID & pushkey, honouring the 'append' ... | David Baker | 2015-03-25 | 2 | -15/+39 |
| | * | | | 1) Pushers are now associated with an access token | David Baker | 2015-03-24 | 3 | -2/+5 |
| | * | | | Make deleting other access tokens when you change your password actually work | David Baker | 2015-03-24 | 1 | -5/+11 |
| | * | | | Implement password changing (finally) along with a start on making client/ser... | David Baker | 2015-03-23 | 1 | -4/+29 |
| * | | | | pep8 | David Baker | 2015-04-27 | 1 | -1/+1 |
| * | | | | Run database check before daemonizing, at the cost of database hygiene. | David Baker | 2015-04-27 | 2 | -18/+10 |
| * | | | | rename db method to be more informative | David Baker | 2015-04-27 | 1 | -4/+4 |
| * | | | | pep8 | David Baker | 2015-04-24 | 1 | -2/+2 |
| * | | | | Check users in our table aren't on a different domain to the one we're config... | David Baker | 2015-04-24 | 1 | -0/+18 |
| | |_|/
| |/| | |
|
* | | | | Use TEXT instead of VARCHAR(n), since PostgreSQL treats them the same except ... | Erik Johnston | 2015-04-28 | 32 | -289/+289 |
* | | | | Make get_max_token into inlineCallbacks so that the lock works. | Erik Johnston | 2015-04-27 | 1 | -3/+4 |
* | | | | Merge branch 'develop' of github.com:matrix-org/synapse into postgres | Erik Johnston | 2015-04-27 | 2 | -0/+28 |
|\| | | |
|
| * | | | Copyright notices | Mark Haines | 2015-04-24 | 2 | -0/+28 |
| | |/
| |/| |
|
* | | | Shuffle operations so that locking upsert happens last in the txn. This ensur... | Erik Johnston | 2015-04-27 | 5 | -56/+56 |
* | | | Handle the fact that postgres databases can be restarted from under us | Erik Johnston | 2015-04-27 | 3 | -1/+33 |
* | | | Revert needless change to storage.profile | Erik Johnston | 2015-04-17 | 1 | -6/+1 |
* | | | Add unique index to room_aliases, remove duplicates on upgrade. Convert some ... | Erik Johnston | 2015-04-17 | 7 | -4/+19 |
* | | | PEP8 | Erik Johnston | 2015-04-16 | 2 | -5/+0 |
* | | | Go back to storing JSON in TEXT | Erik Johnston | 2015-04-16 | 11 | -41/+20 |
* | | | Move encoding and decoding of JSON into storage layer | Erik Johnston | 2015-04-16 | 1 | -20/+6 |
* | | | Remove mysql/maria support | Erik Johnston | 2015-04-15 | 3 | -53/+1 |
* | | | Change full_schemas/11 to work with postgres | Erik Johnston | 2015-04-15 | 13 | -84/+90 |
* | | | Remove debug logging | Erik Johnston | 2015-04-15 | 1 | -2/+0 |
* | | | Add missing yield | Erik Johnston | 2015-04-15 | 1 | -1/+1 |
* | | | pushers table requires a unique id. | Erik Johnston | 2015-04-15 | 2 | -3/+11 |
* | | | Don't pass in removed flag | Erik Johnston | 2015-04-15 | 1 | -1/+0 |
* | | | Postgres does not allow you to continue using a cursor after a DB exception h... | Erik Johnston | 2015-04-15 | 1 | -11/+14 |
* | | | Turn off persistance of sent_transactions.response_json | Erik Johnston | 2015-04-15 | 1 | -1/+1 |
* | | | Add index on events (topological_ordering, stream_ordering) to help with ORDE... | Erik Johnston | 2015-04-15 | 2 | -0/+2 |
* | | | Use try..finally in contextlib.contextmanager | Erik Johnston | 2015-04-15 | 1 | -3/+5 |
* | | | Use True for True rather than 1 | Erik Johnston | 2015-04-15 | 1 | -5/+7 |
* | | | Add missing yield in storage func | Erik Johnston | 2015-04-15 | 1 | -1/+1 |
* | | | Correctly identify deadlocks | Erik Johnston | 2015-04-15 | 1 | -1/+1 |
* | | | Add postgres database engine | Erik Johnston | 2015-04-14 | 1 | -0/+44 |
* | | | Rename user_ips.user -> user_id | Erik Johnston | 2015-04-14 | 3 | -8/+8 |
* | | | Add support for postgres instead of mysql. Change sql accourdingly. blob + va... | Erik Johnston | 2015-04-14 | 20 | -140/+151 |
* | | | Correctly increment the _next_id initially | Erik Johnston | 2015-04-14 | 1 | -2/+4 |
* | | | For backwards compat, make state_groups.id have a type of int, not varchar | Erik Johnston | 2015-04-13 | 2 | -2/+2 |
* | | | Remove duplicate rows | Erik Johnston | 2015-04-10 | 1 | -0/+9 |
* | | | Use case sensitive collations | Erik Johnston | 2015-04-10 | 1 | -1/+1 |
* | | | DROP indexes before recreating them | Erik Johnston | 2015-04-10 | 2 | -1/+9 |
* | | | Use LONGBLOB and TEXT for arbitary length rows | Erik Johnston | 2015-04-10 | 12 | -34/+34 |
* | | | Handle the fact that in sqlite binary data might be stored as unicode or bytes | Erik Johnston | 2015-04-10 | 5 | -5/+20 |
* | | | Bump schema version | Erik Johnston | 2015-04-10 | 1 | -1/+1 |
* | | | Use unsigned bigint | Erik Johnston | 2015-04-10 | 19 | -50/+50 |
* | | | SQLite wants INTEGER and not BIGINT for primary keys | Erik Johnston | 2015-04-10 | 6 | -9/+9 |
* | | | Update full_schemas/16 to match delta files. Add delta/16 scripts | Erik Johnston | 2015-04-10 | 6 | -0/+245 |
* | | | Revert non-trivial changes to upgrade scripts | Erik Johnston | 2015-04-10 | 3 | -5/+5 |
* | | | Fix schema again | Erik Johnston | 2015-04-10 | 2 | -3/+3 |
* | | | Revert non-trivial schema changes and move them to a new schema version. | Erik Johnston | 2015-04-10 | 19 | -27/+636 |
* | | | Remove unused import | Erik Johnston | 2015-04-09 | 1 | -1/+1 |
* | | | Remove spurious spaces | Erik Johnston | 2015-04-09 | 15 | -50/+50 |
* | | | Merge branch 'develop' of github.com:matrix-org/synapse into mysql | Erik Johnston | 2015-04-09 | 2 | -21/+30 |
|\| | |
|
| * | | Merge pull request #114 from matrix-org/improve_get_event_cache | Mark Haines | 2015-04-08 | 2 | -21/+30 |
| |\ \ |
|
| | * | | Appease pep8 | Paul "LeoNerd" Evans | 2015-03-26 | 1 | -1/+2 |
| | * | | Implement the main getEvent cache using Cache() instead of a custom applicati... | Paul "LeoNerd" Evans | 2015-03-25 | 1 | -12/+7 |
| | * | | Use FrozenEvent's reject_reason to decide whether to return it; don't include... | Paul "LeoNerd" Evans | 2015-03-25 | 1 | -10/+14 |
| | * | | Store the rejected reason in (Frozen)Event structs | Paul "LeoNerd" Evans | 2015-03-25 | 1 | -2/+8 |
| | * | | Indirect invalidations of _get_event_cache via a helper method to keep all us... | Paul "LeoNerd" Evans | 2015-03-25 | 2 | -2/+5 |
* | | | | Stream ordering and out of order insertions. | Erik Johnston | 2015-04-09 | 5 | -65/+153 |
* | | | | Use generic db exceptions rather than sqlite3 specific ones | Erik Johnston | 2015-04-08 | 2 | -6/+2 |
* | | | | Merge branch 'develop' of github.com:matrix-org/synapse into mysql | Erik Johnston | 2015-04-08 | 1 | -1/+2 |
|\| | | |
|
| * | | | Move database timer logging to seperate logger | Erik Johnston | 2015-04-08 | 1 | -1/+2 |
* | | | | Retry transaction, not SQL query | Erik Johnston | 2015-04-08 | 1 | -21/+25 |
* | | | | Fix maria engine to correctly recognize deadlocks | Erik Johnston | 2015-04-08 | 1 | -2/+2 |
* | | | | Merge branch 'develop' of github.com:matrix-org/synapse into mysql | Erik Johnston | 2015-04-07 | 5 | -207/+429 |
|\| | | |
|
| * | | | Add same user_id char checks as registration. | Kegan Dougal | 2015-03-31 | 1 | -1/+7 |
| * | | | Use a sender localpart instead of a user ID. | Kegan Dougal | 2015-03-31 | 1 | -2/+9 |
| * | | | Edit SQL schema to use string IDs not ints. Use token as ID. Update tests. | Kegan Dougal | 2015-03-31 | 2 | -13/+17 |
| * | | | Fix tests and missing returns on deferreds. | Kegan Dougal | 2015-03-31 | 1 | -7/+11 |
| * | | | Remove more reg/unreg methods. Read config not database for cache. | Kegan Dougal | 2015-03-31 | 1 | -160/+59 |
| * | | | Revert "Add another @cached wrapper, this time on get_presence_state()" | Paul "LeoNerd" Evans | 2015-03-27 | 1 | -8/+2 |
| * | | | Add another @cached wrapper, this time on get_presence_state() | Paul "LeoNerd" Evans | 2015-03-27 | 1 | -2/+8 |
| * | | | Fixes from PR comments | Kegan Dougal | 2015-03-26 | 1 | -2/+2 |
| * | | | Merge branch 'develop' into application-services-txn-reliability | Kegan Dougal | 2015-03-26 | 19 | -644/+795 |
| |\| | |
|
| | * | | Allow a choice of LRU behaviour for Cache() by using LruCache() or OrderedDict() | Paul "LeoNerd" Evans | 2015-03-25 | 1 | -8/+12 |
| | |/ |
|
| | * | Put a cache on get_aliases_for_room | Paul "LeoNerd" Evans | 2015-03-20 | 1 | -2/+8 |
| | * | Remember the 'last seen' time for a given user/IP/device combination and only... | Paul "LeoNerd" Evans | 2015-03-20 | 1 | -2/+30 |
| | * | Pull out the cache logic from the @cached wrapper into its own class we can r... | Paul "LeoNerd" Evans | 2015-03-20 | 1 | -35/+54 |
| | * | func(*EXPR) is valid Python syntax, really... | Paul "LeoNerd" Evans | 2015-03-20 | 1 | -2/+1 |
| * | | Set the service ID as soon as it is known. | Kegan Dougal | 2015-03-16 | 1 | -3/+4 |
| * | | Minor PR comment tweaks. | Kegan Dougal | 2015-03-16 | 2 | -4/+4 |
| * | | Merge branch 'develop' into application-services-txn-reliability | Kegan Dougal | 2015-03-16 | 9 | -54/+83 |
| |\ \ |
|
| * | | | Fix remaining scheduler bugs. Add more informative logging. | Kegan Dougal | 2015-03-10 | 1 | -2/+3 |
| * | | | Remove unused import | Kegan Dougal | 2015-03-09 | 1 | -1/+0 |
| * | | | Bug fixes whilst putting it all together | Kegan Dougal | 2015-03-09 | 1 | -5/+4 |
| * | | | Use event IDs instead of dumping event content in the txns table. | Kegan Dougal | 2015-03-09 | 2 | -7/+9 |
| * | | | Use seconds; start gluing in the AS scheduler into the AS handler. | Kegan Dougal | 2015-03-09 | 1 | -2/+5 |
| * | | | Finish appservice txn storage impl and tests. | Kegan Dougal | 2015-03-09 | 2 | -16/+71 |
| * | | | Implement create_appservice_txn with tests. | Kegan Dougal | 2015-03-09 | 1 | -4/+42 |
| * | | | Partially implement txn store methods with tests. | Kegan Dougal | 2015-03-09 | 1 | -17/+44 |
| * | | | Start implementing ApplicationServiceTransactionStore | Kegan Dougal | 2015-03-06 | 1 | -1/+5 |
| * | | | Merge branch 'develop' into application-services-txn-reliability | Kegan Dougal | 2015-03-06 | 2 | -1/+56 |
| |\ \ \ |
|
| * | | | | Assign the AS ID from the database; replace old placeholder txn id. | Kegan Dougal | 2015-03-06 | 1 | -2/+3 |
| * | | | | Add appservice txns sql schema | Kegan Dougal | 2015-03-06 | 3 | -1/+38 |
| * | | | | Apply clarity and docstrings | Kegan Dougal | 2015-03-06 | 1 | -1/+13 |
| * | | | | Finish synapse.appservice.scheduler implementation. | Kegan Dougal | 2015-03-06 | 1 | -0/+22 |
| * | | | | Flesh out more stub functions. | Kegan Dougal | 2015-03-06 | 1 | -2/+15 |
| * | | | | Add stub ApplicationServiceTransactionStore. Bootstrap Recoverers. Fill in st... | Kegan Dougal | 2015-03-06 | 1 | -0/+28 |
* | | | | | Retry on deadlock | Erik Johnston | 2015-04-07 | 3 | -3/+21 |
* | | | | | PEP8 | Erik Johnston | 2015-04-07 | 5 | -8/+0 |
* | | | | | Fix prepare_sqlite3_database's convert_param_style | Erik Johnston | 2015-04-07 | 1 | -7/+2 |
* | | | | | Bump database version | Erik Johnston | 2015-04-07 | 1 | -1/+1 |
* | | | | | Add index to presence table | Erik Johnston | 2015-04-07 | 1 | -0/+2 |
* | | | | | Don't use multiple UNIQUE constraints; it will cause deadlocks | Erik Johnston | 2015-04-07 | 4 | -15/+17 |
* | | | | | Implement or_ignore flag on inserts | Erik Johnston | 2015-04-07 | 2 | -4/+10 |
* | | | | | Don't use AUTOINCREMENT, use an in memory version | Erik Johnston | 2015-04-07 | 5 | -19/+68 |
* | | | | | Fix unicode support | Erik Johnston | 2015-04-02 | 21 | -160/+189 |
* | | | | | Make work in both Maria and SQLite. Fix tests | Erik Johnston | 2015-04-01 | 24 | -100/+199 |
* | | | | | Fix unicode database support | Erik Johnston | 2015-03-25 | 12 | -24/+52 |
* | | | | | Escape non printing ascii character | Erik Johnston | 2015-03-24 | 1 | -3/+3 |
* | | | | | Don't reinsert into event_edges | Erik Johnston | 2015-03-24 | 1 | -8/+8 |
* | | | | | Fix bugs in transactions storage | Erik Johnston | 2015-03-24 | 1 | -2/+3 |
* | | | | | Don't use room hosts table | Erik Johnston | 2015-03-24 | 1 | -25/+4 |
* | | | | | Don't order by rowid | Erik Johnston | 2015-03-24 | 1 | -1/+1 |
* | | | | | Use _simple_upsert | Erik Johnston | 2015-03-24 | 2 | -5/+7 |
* | | | | | Remove uses of REPLACE and ON CONFLICT IGNORE to make the SQL more portable. | Erik Johnston | 2015-03-23 | 4 | -16/+4 |
* | | | | | Sanitize RoomMemberStore | Erik Johnston | 2015-03-23 | 1 | -63/+61 |
* | | | | | Use 'update or insert' rather than on 'conflict replace' | Erik Johnston | 2015-03-23 | 1 | -10/+17 |
* | | | | | Sanitize TransactionStore | Erik Johnston | 2015-03-23 | 1 | -87/+104 |
* | | | | | Merge branch 'develop' of github.com:matrix-org/synapse into mysql | Erik Johnston | 2015-03-20 | 18 | -115/+227 |
|\ \ \ \ \
| | |_|_|/
| |/| | | |
|
| * | | | | PEP8 | Erik Johnston | 2015-03-20 | 1 | -1/+1 |
| * | | | | Merge branch 'develop' of github.com:matrix-org/synapse into store_rearrangement | Erik Johnston | 2015-03-20 | 3 | -14/+30 |
| |\ \ \ \ |
|
| | * | | | | Add the tiniest of tiny one-element caches to get_room_events_max_id() as it'... | Paul "LeoNerd" Evans | 2015-03-20 | 2 | -1/+3 |
| | * | | | | Allow @cached-wrapped functions to have more or fewer than 1 argument; assert... | Paul "LeoNerd" Evans | 2015-03-20 | 1 | -13/+27 |
| * | | | | | Give sensible names for '_simple_...' transactions | Erik Johnston | 2015-03-20 | 13 | -38/+93 |
| * | | | | | Start removing Tables | Erik Johnston | 2015-03-20 | 2 | -26/+29 |
| * | | | | | Tidy up _simple_... methods | Erik Johnston | 2015-03-20 | 2 | -40/+60 |
| * | | | | | Rearrange storage modules | Erik Johnston | 2015-03-20 | 7 | -515/+493 |
| |/ / / / |
|
| * | | | | Clean out event_forward_extremities table when the server rejoins the room | Erik Johnston | 2015-03-18 | 1 | -0/+12 |
| * | | | | @cached() annotate get_user_by_token() - achieves a minor DB performance impr... | Paul "LeoNerd" Evans | 2015-03-17 | 1 | -1/+6 |
| * | | | | Be polite and ensure we use @functools.wraps() when creating a function decor... | Paul "LeoNerd" Evans | 2015-03-17 | 1 | -0/+2 |
* | | | | | Rearrange storage modules | Erik Johnston | 2015-03-20 | 7 | -509/+486 |
* | | | | | Generate transaction id in code | Erik Johnston | 2015-03-20 | 1 | -1/+1 |
* | | | | | decode_result takes an iterable | Erik Johnston | 2015-03-20 | 2 | -2/+5 |
* | | | | | Fix up schemas some more | Erik Johnston | 2015-03-20 | 3 | -3/+3 |
* | | | | | Convert storage layer to be mysql compatible | Erik Johnston | 2015-03-19 | 13 | -101/+171 |
* | | | | | Remove redundant key | Erik Johnston | 2015-03-19 | 1 | -1/+0 |
* | | | | | Fix up schemas to work with mariadb | Erik Johnston | 2015-03-19 | 15 | -84/+82 |
* | | | | | Update schema to work with mariadb | Erik Johnston | 2015-03-18 | 16 | -256/+224 |
|/ / / / |
|
* | | | | Add a metric for the scheduling latency of SQL queries | Paul "LeoNerd" Evans | 2015-03-16 | 1 | -0/+5 |
* | | | | Merge pull request #110 from matrix-org/fix_ban | Erik Johnston | 2015-03-16 | 1 | -1/+1 |
|\ \ \ \
| |_|_|/
|/| | | |
|
| * | | | Copy dict of context.current_state before changing it. | Erik Johnston | 2015-03-16 | 1 | -1/+1 |
| | |/
| |/| |
|
* | | | Bugfix to sql_txn_timer increment - add only the per-TXN duration, not the to... | Paul "LeoNerd" Evans | 2015-03-12 | 1 | -7/+5 |
* | | | Rename the timer metrics exported by synapse.storage to append _time, so the ... | Paul "LeoNerd" Evans | 2015-03-12 | 1 | -3/+3 |
* | | | Rename TimerMetric to DistributionMetric; as it could count more than just time | Paul "LeoNerd" Evans | 2015-03-12 | 1 | -7/+7 |
* | | | Pretend the 'getEvent' cache is just another cache in the set of all the othe... | Paul "LeoNerd" Evans | 2015-03-12 | 1 | -6/+5 |
* | | | Use _ instead of . as a metric namespacing separator, for Prometheus | Paul "LeoNerd" Evans | 2015-03-12 | 1 | -5/+13 |
* | | | Rename Metrics' "keys" to "labels" | Paul "LeoNerd" Evans | 2015-03-12 | 1 | -3/+3 |
* | | | Add TimerMetrics to shadow the PerformanceCounters in synapse.storage; with t... | Paul "LeoNerd" Evans | 2015-03-12 | 1 | -3/+20 |
* | | | Collect per-SQL-verb timer stats on query execution time | Paul "LeoNerd" Evans | 2015-03-12 | 1 | -5/+11 |
* | | | Delete a couple of TODO markers of monitoring stats now done | Paul "LeoNerd" Evans | 2015-03-12 | 1 | -1/+0 |
* | | | Rename CacheCounterMetric to just CacheMetric; add a CallbackMetric component... | Paul "LeoNerd" Evans | 2015-03-12 | 1 | -3/+3 |
* | | | Sprinkle some CacheCounterMetrics around the synapse.storage layer | Paul "LeoNerd" Evans | 2015-03-12 | 1 | -1/+15 |
* | | | Appease pep8 | Paul "LeoNerd" Evans | 2015-03-11 | 1 | -2/+2 |
* | | | Also give _execute() a description | Paul "LeoNerd" Evans | 2015-03-11 | 6 | -12/+10 |
* | | | Add a description to storage layer's _execute_and_decode() | Paul "LeoNerd" Evans | 2015-03-11 | 5 | -6/+9 |
* | | | Add the master push rule for the break-my-push button. Allow server default r... | David Baker | 2015-03-10 | 1 | -22/+5 |
* | | | These aren't defined for redacted events so don't crash | David Baker | 2015-03-10 | 1 | -2/+4 |
|/ / |
|