Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2017-06-13 | Fix user directory insertion due to missing room_id | Erik Johnston | 2 | -4/+9 | |
2017-06-13 | Fix up sql | Erik Johnston | 1 | -10/+12 | |
2017-06-13 | Fix user dir to not assume existence of user | Erik Johnston | 1 | -22/+37 | |
2017-06-13 | Throw exception when not retrying when downloading media | Erik Johnston | 1 | -0/+1 | |
2017-06-13 | Don't assume existance of events when updating user directory | Erik Johnston | 1 | -3/+6 | |
2017-06-13 | Tweak the ranking of PG user dir search | Erik Johnston | 1 | -13/+40 | |
2017-06-13 | Add cache for is_host_joined | Erik Johnston | 3 | -2/+7 | |
2017-06-09 | Fix replication | Erik Johnston | 2 | -2/+2 | |
2017-06-09 | Comments | Erik Johnston | 1 | -0/+3 | |
2017-06-09 | Cache state deltas | Erik Johnston | 1 | -3/+12 | |
2017-06-09 | Rewrite conditional | Erik Johnston | 1 | -1/+1 | |
2017-06-09 | Comment | Erik Johnston | 1 | -0/+2 | |
2017-06-09 | Tweak SQL | Erik Johnston | 1 | -3/+6 | |
2017-06-09 | Fix has_any_entity_changed | Erik Johnston | 1 | -4/+4 | |
Occaisonally has_any_entity_changed would throw the error: "Set changed size during iteration" when taking the max of the `sorteddict`. While its uncertain how that happens, its quite inefficient to iterate over the entire dict anyway so we change to using the more traditional `bisect_*` functions. | |||||
2017-06-09 | Add missing notifier | Erik Johnston | 1 | -1/+2 | |
2017-06-09 | Fix replication | Erik Johnston | 1 | -1/+0 | |
2017-06-09 | Change is_host_joined to use current_state table | Erik Johnston | 4 | -54/+28 | |
This bypasses a bug where using the state groups to figure out if a host is in a room sometimes errors if the servers isn't in the room. (For example when the server rejected an invite to a remote room) | |||||
2017-06-09 | Mark remote invite rejections as outliers | Erik Johnston | 1 | -0/+1 | |
2017-06-08 | Ensure we don't use unpersisted state group as prev group | Erik Johnston | 2 | -7/+19 | |
2017-06-07 | Fix bug where state_group tables got corrupted | Erik Johnston | 3 | -10/+24 | |
This is due to the fact that we prefilled caches using txn.call_after, which always gets called including on error. We fix this by making txn.call_after only fire when a transaction completes successfully, which is what we want most of the time anyway. | |||||
2017-06-07 | Don't start user_directory handling on workers | Erik Johnston | 2 | -3/+3 | |
2017-06-07 | Add some logging to user directory | Erik Johnston | 1 | -0/+7 | |
2017-06-07 | When pruning, delete from device_lists_outbound_last_success | Erik Johnston | 1 | -0/+8 | |
2017-06-07 | Keep pruning background task | Erik Johnston | 1 | -0/+45 | |
2017-06-07 | Comments | Erik Johnston | 2 | -0/+15 | |
2017-06-07 | Remove spurious log lines | Erik Johnston | 3 | -4/+0 | |
2017-06-07 | Split up device_lists_outbound_pokes table for faster updates. | Erik Johnston | 2 | -58/+57 | |
2017-06-07 | Increase size of IP cache | Erik Johnston | 1 | -1/+6 | |
2017-06-06 | Fix typo when getting app name | Erik Johnston | 1 | -1/+1 | |
2017-06-06 | Fix wrong number of arguments | Erik Johnston | 1 | -1/+1 | |
2017-06-01 | Handle profile updates in user directory | Erik Johnston | 2 | -0/+74 | |
2017-06-01 | Fix sqlite | Erik Johnston | 1 | -1/+1 | |
2017-06-01 | Split the table in two | Erik Johnston | 4 | -31/+138 | |
2017-06-01 | Tweak search query | Erik Johnston | 1 | -1/+1 | |
2017-06-01 | Tweak search query | Erik Johnston | 1 | -2/+2 | |
2017-06-01 | Comments | Erik Johnston | 1 | -3/+3 | |
2017-06-01 | Check if host is still in room | Erik Johnston | 1 | -0/+11 | |
2017-06-01 | Remove spurious inlineCallbacks | Erik Johnston | 1 | -1/+0 | |
2017-06-01 | Fix removing users | Erik Johnston | 1 | -0/+5 | |
2017-06-01 | Bug fixes and logging | Erik Johnston | 2 | -2/+22 | |
- Check if room is public when a user joins before adding to user dir - Fix typo of field name "content.join_rules" -> "content.join_rule" | |||||
2017-06-01 | Order by if they have profile info | Erik Johnston | 1 | -2/+11 | |
2017-06-01 | Use prefix matching | Erik Johnston | 1 | -5/+29 | |
2017-05-31 | Comment on why arbitrary comments | Erik Johnston | 1 | -2/+6 | |
2017-05-31 | Use unique indices | Erik Johnston | 1 | -2/+2 | |
2017-05-31 | Comment briefly on how we keep user_directory up to date | Erik Johnston | 1 | -0/+10 | |
2017-05-31 | Convert to int | Erik Johnston | 1 | -0/+1 | |
2017-05-31 | Lifts things into separate function | Erik Johnston | 1 | -56/+54 | |
2017-05-31 | Typos | Erik Johnston | 1 | -8/+8 | |
2017-05-31 | Fix tests | Erik Johnston | 2 | -2/+3 | |
2017-05-31 | Fix typo | Erik Johnston | 1 | -1/+1 | |
2017-05-31 | Limit number of things we fetch out of the db | Erik Johnston | 1 | -9/+30 | |
2017-05-31 | Add stream change cache | Erik Johnston | 4 | -1/+34 | |
2017-05-31 | Split out directory and search tables | Erik Johnston | 2 | -29/+56 | |
2017-05-31 | Pull max id from correct table | Erik Johnston | 2 | -4/+10 | |
2017-05-31 | Handle the server leaving a public room | Erik Johnston | 4 | -3/+46 | |
2017-05-31 | Add comments | Erik Johnston | 4 | -45/+173 | |
2017-05-31 | Weight differently | Erik Johnston | 2 | -10/+31 | |
2017-05-31 | Use POST | Erik Johnston | 1 | -1/+1 | |
2017-05-31 | Add REST API | Erik Johnston | 2 | -0/+61 | |
2017-05-31 | Add search | Erik Johnston | 2 | -0/+38 | |
2017-05-31 | Update room column when room becomes unpublic | Erik Johnston | 2 | -2/+31 | |
2017-05-31 | Add call later | Erik Johnston | 1 | -0/+2 | |
2017-05-31 | Start later | Erik Johnston | 1 | -1/+4 | |
2017-05-31 | Don't go round in circles | Erik Johnston | 1 | -4/+2 | |
2017-05-31 | Add user_directory to database | Erik Johnston | 6 | -1/+444 | |
2017-05-30 | Add comment | Erik Johnston | 1 | -1/+1 | |
2017-05-30 | Add clobbered event_id | Erik Johnston | 2 | -1/+3 | |
2017-05-30 | Add current_state_delta_stream table | Erik Johnston | 2 | -8/+48 | |
2017-05-26 | Handle None state group correctly | Erik Johnston | 2 | -4/+7 | |
2017-05-26 | Fix typing tests | Erik Johnston | 2 | -7/+7 | |
2017-05-25 | Faster cache for get_joined_hosts | Erik Johnston | 5 | -29/+117 | |
2017-05-25 | Don't return weird prev_group | Erik Johnston | 1 | -8/+13 | |
2017-05-25 | Remove unused options | Erik Johnston | 1 | -11/+4 | |
2017-05-24 | Add background task to clear out old event_auth | Erik Johnston | 3 | -1/+74 | |
2017-05-24 | Only store event_auth for state events | Erik Johnston | 3 | -12/+44 | |
2017-05-23 | Remove redundant invalidation | Erik Johnston | 1 | -3/+0 | |
2017-05-23 | Missed an invalidation | Erik Johnston | 1 | -0/+3 | |
2017-05-22 | actually trim oversize og:description meta | Matthew Hodgson | 1 | -0/+2 | |
2017-05-22 | Only load jinja2 templates once | Erik Johnston | 5 | -60/+106 | |
Instead of every time a new email pusher is created, as loading jinja2 templates is slow. | |||||
2017-05-22 | Add missing storage function to slave store | Erik Johnston | 1 | -0/+2 | |
2017-05-22 | Comment | Erik Johnston | 1 | -0/+2 | |
2017-05-22 | Remove spurious log level guards | Erik Johnston | 1 | -6/+3 | |
2017-05-22 | Stream count_e2e_one_time_keys cache invalidation | Erik Johnston | 1 | -13/+18 | |
2017-05-22 | Pull out if statement from for loop | Erik Johnston | 1 | -6/+14 | |
2017-05-22 | Update list cache to handle one arg case | Erik Johnston | 1 | -17/+33 | |
We update the normal cache descriptors to handle caches with a single argument specially so that the key wasn't a 1-tuple. We need to update the cache list to be aware of this. | |||||
2017-05-22 | Check if current event is a membership event | Erik Johnston | 1 | -4/+9 | |
2017-05-22 | Add debug logging | Erik Johnston | 1 | -0/+24 | |
2017-05-22 | Comment | Erik Johnston | 1 | -1/+4 | |
2017-05-22 | Use tuple unpacking | Erik Johnston | 1 | -2/+2 | |
2017-05-19 | Speed up calculating push rules | Erik Johnston | 1 | -8/+19 | |
2017-05-19 | Add count of one time keys to sync stream | Erik Johnston | 2 | -0/+12 | |
2017-05-19 | Fix invalidation of get_users_with_read_receipts_in_room | Erik Johnston | 1 | -1/+3 | |
2017-05-19 | Move invalidation cb to its own structure | Erik Johnston | 1 | -6/+15 | |
2017-05-19 | Store ActionGenerator in HomeServer | Erik Johnston | 5 | -7/+10 | |
2017-05-18 | Don't push users who have left | Erik Johnston | 1 | -1/+4 | |
2017-05-18 | Increase size of push rule caches | Erik Johnston | 1 | -2/+2 | |
2017-05-18 | Make get_if_app_services_interested_in_user faster | Erik Johnston | 4 | -13/+34 | |
2017-05-18 | Remove size of push get_rules cache | Erik Johnston | 1 | -1/+1 | |
2017-05-18 | Bump changelog and version github/release-v0.21.0 release-v0.21.0 | Erik Johnston | 2 | -1/+7 | |
2017-05-18 | Add comment | Erik Johnston | 1 | -0/+3 | |
2017-05-17 | Correct a typo in UPGRADE.rst | Aaron Raimist | 1 | -1/+1 | |
2017-05-17 | Faster push rule calculation via push specific cache | Erik Johnston | 3 | -47/+249 | |
We add a push rule specific cache that ensures that we can reuse calculated push rules appropriately when a user join/leaves. | |||||
2017-05-17 | Make get_state_groups_from_groups faster. | Erik Johnston | 3 | -41/+58 | |
Most of the time was spent copying a dict to filter out sentinel values that indicated that keys did not exist in the dict. The sentinel values were added to ensure that we cached the non-existence of keys. By updating DictionaryCache to keep track of which keys were known to not exist itself we can remove a dictionary copy. | |||||
2017-05-17 | Update changelog v0.21.0-rc3 | Erik Johnston | 1 | -1/+2 | |
2017-05-17 | Spelling | Erik Johnston | 1 | -2/+2 | |
2017-05-17 | Bump changelog and version | Erik Johnston | 2 | -1/+25 | |
2017-05-17 | Comment | Erik Johnston | 1 | -0/+5 | |
2017-05-17 | Short circuit when we have delta ids | Erik Johnston | 1 | -3/+19 | |
2017-05-16 | Speed up get_joined_hosts | Erik Johnston | 2 | -2/+4 | |
2017-05-16 | Make presence use cached users/hosts in room | Erik Johnston | 2 | -4/+4 | |
2017-05-16 | Speed up get_domain_from_id | Erik Johnston | 1 | -3/+3 | |
2017-05-16 | Remove spurious merge artifacts | Erik Johnston | 1 | -13/+0 | |
2017-05-16 | Take a copy before prefilling, as it may be a frozendict | Erik Johnston | 1 | -1/+1 | |
2017-05-15 | Don't log exceptions for NotRetryingDestination | Erik Johnston | 1 | -1/+3 | |
2017-05-15 | Fixed syntax nits | Pablo Saavedra | 2 | -5/+6 | |
2017-05-15 | Update comment | Erik Johnston | 1 | -1/+2 | |
2017-05-15 | Comments | Erik Johnston | 2 | -3/+6 | |
2017-05-15 | Add more granular event send metrics | Erik Johnston | 1 | -0/+12 | |
2017-05-15 | Prefill state caches | Erik Johnston | 3 | -6/+20 | |
2017-05-15 | Fixed implementation errors | Pablo Saavedra | 2 | -3/+7 | |
* Added HS as property in SyncRestServlet * Fixed set_timeline_upper_limit function implementat¡ion | |||||
2017-05-13 | Configurable maximum number of events requested by /sync and /messages (#2220) | Pablo Saavedra | 4 | -0/+21 | |
Set the limit on the returned events in the timeline in the get and sync operations. The default value is -1, means no upper limit. For example, using `filter_timeline_limit: 5000`: POST /_matrix/client/r0/user/user:id/filter { room: { timeline: { limit: 1000000000000000000 } } } GET /_matrix/client/r0/user/user:id/filter/filter:id { room: { timeline: { limit: 5000 } } } The server cuts down the room.timeline.limit. | |||||
2017-05-11 | Add a comment to old delta | Richard van der Hoff | 1 | -0/+4 | |
2017-05-11 | Don't create event_search index on sqlite | Richard van der Hoff | 2 | -3/+11 | |
... because the table is virtual | |||||
2017-05-11 | Add more logging for purging | Richard van der Hoff | 1 | -7/+14 | |
Log the number of events we will be deleting at info. | |||||
2017-05-11 | Add an index to event_search | Richard van der Hoff | 3 | -3/+35 | |
- to make the purge API quicker | |||||
2017-05-11 | Tidy purge code and add some comments | Richard van der Hoff | 1 | -12/+19 | |
Try to make this clearer with more comments and some variable renames | |||||
2017-05-11 | Fix users claimed non-exclusively by an app service don't get notifications ↵ | Slipeer | 2 | -3/+6 | |
#2211 | |||||
2017-05-10 | Don't de-delta state groups we're about to delete | Richard van der Hoff | 1 | -11/+9 | |
2017-05-10 | add some logging to purge_history | Richard van der Hoff | 1 | -4/+21 | |
2017-05-10 | Modify condition on empty localpart | Luke Barnard | 1 | -1/+1 | |
2017-05-10 | Modify register/available to be GET with query param | Luke Barnard | 2 | -5/+11 | |
- GET is now the method for register/available - a query parameter "username" is now used Also, empty usernames are now handled with an error message on registration or via register/available: `User ID cannot be empty` | |||||
2017-05-10 | Documantation to chek synapse version | hamber-dick | 1 | -0/+9 | |
I've added some Documentation, how to get the running Version of a Synapse homeserver. This should help the HS-Owners to check whether the Upgrade was successful. | |||||
2017-05-10 | Change register/available to POST (from GET) | Luke Barnard | 1 | -1/+1 | |
2017-05-10 | Add per user ratelimiting overrides | Erik Johnston | 6 | -19/+93 | |
2017-05-09 | Replace some instances of preserve_context_over_deferred | Richard van der Hoff | 1 | -3/+3 | |
2017-05-09 | Do some logging when one-time-keys get claimed | Richard van der Hoff | 3 | -0/+54 | |
might help us figure out if https://github.com/vector-im/riot-web/issues/3868 has happened. | |||||
2017-05-09 | Allow clients to upload one-time-keys with new sigs | Richard van der Hoff | 3 | -33/+182 | |
When a client retries a key upload, don't give an error if the signature has changed (but the key is the same). Fixes https://github.com/vector-im/riot-android/issues/1208, hopefully. | |||||
2017-05-08 | Expand docstring a bit | Erik Johnston | 1 | -1/+7 | |
2017-05-08 | Add missing yields | Erik Johnston | 1 | -2/+4 | |
2017-05-08 | Don't update event cache hit ratio from get_joined_users | Erik Johnston | 3 | -5/+21 | |
Otherwise the hit ration of plain get_events gets completely skewed by calls to get_joined_users* functions. | |||||
2017-05-08 | Invalidate cache on device deletion | Erik Johnston | 1 | -2/+6 | |
2017-05-08 | Cache one time key counts | Erik Johnston | 1 | -0/+9 | |
2017-05-08 | Comment | Erik Johnston | 1 | -0/+2 | |
2017-05-08 | Cache check to see if device exists | Erik Johnston | 1 | -1/+12 | |
2017-05-08 | Increase client_ip cache size | Erik Johnston | 1 | -0/+1 | |
2017-05-08 | Bump version and changelog v0.21.0-rc2 | Erik Johnston | 2 | -1/+14 | |
2017-05-08 | Revert "Remove unused import" | Erik Johnston | 1 | -0/+1 | |
This reverts commit ab37bef83bebd7cdaeb7cfd98553d18883d09103. | |||||
2017-05-08 | Revert "We don't care about forgotten rooms" | Erik Johnston | 1 | -0/+12 | |
This reverts commit ad8b316939d59230526e60660caf9094cff62c8f. | |||||
2017-05-08 | Revert "Speed up filtering of a single event in push" | Erik Johnston | 4 | -24/+40 | |
This reverts commit 421fdf74609439edaaffce117436e6a6df147841. | |||||
2017-05-08 | Bump version and changelog v0.21.0-rc1 | Erik Johnston | 2 | -1/+50 | |
2017-05-05 | Comment | Erik Johnston | 1 | -0/+6 | |
2017-05-05 | Use preserve_fn and add logs | Erik Johnston | 1 | -1/+3 | |
2017-05-05 | Remove redundant reset of destination timers | Erik Johnston | 1 | -7/+0 | |
2017-05-05 | Remember how twisted works | Kegan Dougal | 1 | -2/+2 | |
2017-05-05 | Add comment and TODO | Erik Johnston | 1 | -0/+6 | |
2017-05-05 | Include the clock | Kegan Dougal | 1 | -0/+1 | |
2017-05-05 | Rewrite SimpleHttpClient.request to include timeouts | Kegan Dougal | 1 | -13/+19 | |
Fixes #2191 | |||||
2017-05-05 | Always mark remotes as up if we receive a signed request from them | Erik Johnston | 1 | -0/+7 | |
2017-05-05 | Handle exceptions thrown in handling remote device list updates | Erik Johnston | 1 | -1/+16 | |
2017-05-05 | Fixes | Erik Johnston | 1 | -3/+4 | |
2017-05-04 | Revert "Prefill state caches" | Erik Johnston | 3 | -27/+9 | |
2017-05-04 | Add comment | Erik Johnston | 1 | -0/+3 | |
2017-05-04 | Intern host strings | Erik Johnston | 1 | -1/+2 | |
2017-05-04 | Make caches bigger | Erik Johnston | 1 | -1/+1 | |
2017-05-04 | Fix comment and num args | Erik Johnston | 2 | -2/+2 | |
2017-05-04 | Add new storage functions to slave store | Erik Johnston | 1 | -0/+3 | |
2017-05-04 | Optimise caches with single key | Erik Johnston | 1 | -9/+33 | |
2017-05-04 | Reduce size of get_users_in_room | Erik Johnston | 1 | -2/+2 | |
2017-05-03 | Appease the flake8 gods | Luke Barnard | 1 | -5/+10 | |
2017-05-03 | Make get_joined_users faster | Erik Johnston | 1 | -16/+38 | |
2017-05-03 | Implement username availability checker | Luke Barnard | 1 | -0/+36 | |
Outlined here: https://github.com/vector-im/riot-web/issues/3605#issuecomment-298679388 ```HTTP GET /_matrix/.../register/available { "username": "desiredlocalpart123" } ``` If available, the response looks like ```HTTP HTTP/1.1 200 OK { "available": true } ``` Otherwise, ```HTTP HTTP/1.1 429 { "errcode": "M_LIMIT_EXCEEDED", "error": "Too Many Requests", "retry_after_ms": 2000 } ``` or ```HTTP HTTP/1.1 400 { "errcode": "M_USER_IN_USE", "error": "User ID already taken." } ``` or ```HTTP HTTP/1.1 400 { "errcode": "M_INVALID_USERNAME", "error": "Some reason for username being invalid" } ``` | |||||
2017-05-03 | No need for the exception variable | David Baker | 1 | -1/+1 | |
2017-05-03 | List caught expection types | David Baker | 1 | -1/+1 | |
2017-05-03 | Merge together redundant calculations/logging | Erik Johnston | 1 | -9/+2 | |
2017-05-03 | Update comment | Erik Johnston | 1 | -1/+2 | |
2017-05-03 | Comments | Erik Johnston | 2 | -3/+6 | |
2017-05-02 | Add more granular event send metrics | Erik Johnston | 7 | -5/+32 | |
2017-05-02 | Instantiate DeferredTimedOutError correctly | Richard van der Hoff | 1 | -1/+1 | |
Call `super` correctly, so that we correctly initialise the `errcode` field. Fixes https://github.com/matrix-org/synapse/issues/2179. | |||||
2017-05-02 | Prefill state caches | Erik Johnston | 3 | -6/+18 | |
2017-05-02 | Add cache for get_current_hosts_in_room | Erik Johnston | 3 | -5/+50 | |
2017-04-28 | Fixup | Erik Johnston | 1 | -10/+4 | |
2017-04-28 | Remove unncessary call in _get_missing_events_for_pdu | Erik Johnston | 1 | -13/+11 | |
2017-04-28 | Don't fetch state for missing events that we fetched | Erik Johnston | 1 | -0/+6 | |
2017-04-28 | Remove unused import | Erik Johnston | 1 | -1/+0 | |
2017-04-28 | We don't care about forgotten rooms | Erik Johnston | 1 | -12/+0 | |
2017-04-28 | Speed up filtering of a single event in push | Erik Johnston | 4 | -40/+37 | |
2017-04-27 | Comment and remove spurious logging | Erik Johnston | 2 | -1/+3 | |
2017-04-27 | Fix bgupdate error if index already exists (#2167) | Richard van der Hoff | 1 | -30/+53 | |
When creating a new table index in the background, guard against it existing already. Fixes https://github.com/matrix-org/synapse/issues/2135. Also, make sure we restore the autocommit flag when we're done, otherwise we get more failures from other operations later on. Fixes https://github.com/matrix-org/synapse/issues/1890 (hopefully). | |||||
2017-04-27 | Typo | Erik Johnston | 1 | -1/+1 | |
2017-04-27 | Add some extra logging for edge cases of federation | Erik Johnston | 1 | -2/+22 | |
2017-04-26 | Fix tests | Erik Johnston | 1 | -3/+3 | |
2017-04-26 | Fix invite state to always include all events | Erik Johnston | 3 | -7/+24 | |
2017-04-26 | Remove debugging | David Baker | 1 | -2/+1 | |
2017-04-26 | Revert accidental commit | David Baker | 1 | -4/+4 | |
2017-04-26 | Fix get_json | David Baker | 1 | -5/+4 | |
2017-04-25 | Use CodeMessageException subclass instead | David Baker | 4 | -61/+51 | |
Parse json errors from get_json client methods and throw special errors. | |||||
2017-04-25 | document how to make IPv6 work (#2088) | Matthew Hodgson | 1 | -0/+19 | |
* document how to make IPv6 work * spell out that pip will install 17.1 by default | |||||
2017-04-25 | Make state caches cache in ascii | Erik Johnston | 1 | -2/+3 | |
2017-04-25 | fix up | Erik Johnston | 1 | -1/+2 | |
2017-04-25 | Don't specify default as dict | Erik Johnston | 1 | -1/+1 | |
2017-04-25 | Comment | Erik Johnston | 1 | -0/+2 | |
2017-04-25 | Reduce size of joined_user cache | Erik Johnston | 4 | -11/+40 | |
The _get_joined_users_from_context cache stores a mapping from user_id to avatar_url and display_name. Instead of storing those in a dict, store them in a namedtuple as that uses much less memory. We also try converting the string to ascii to further reduce the size. | |||||
2017-04-25 | Reduce _get_state_group_for_event cache size | Erik Johnston | 1 | -1/+1 | |
2017-04-25 | Remove DEBUG_CACHES | Erik Johnston | 1 | -2/+0 | |
2017-04-25 | Reduce cache size by not storing deferreds | Erik Johnston | 2 | -22/+28 | |
Currently the cache descriptors store deferreds rather than raw values, this is a simple way of triggering only one database hit and sharing the result if two callers attempt to get the same value. However, there are a few caches that simply store a mapping from string to string (or int). These caches can have a large number of entries, under the assumption that each entry is small. However, the size of a deferred (specifically the size of ObservableDeferred) is signigicantly larger than that of the raw value, 2kb vs 32b. This PR therefore changes the cache descriptors to store the raw values rather than the deferreds. As a side effect cached storage function now either return a deferred or the actual value, as the cached list decriptor already does. This is fine as we always end up just yield'ing on the returned value eventually, which handles that case correctly. | |||||
2017-04-24 | Fix code for reporting old verify keys in synapse | Mark Haines | 1 | -3/+2 | |
2017-04-24 | Only intern ascii strings | Erik Johnston | 1 | -18/+11 | |
2017-04-24 | Remove unused cache | Erik Johnston | 2 | -9/+1 | |
2017-04-21 | Need the HTTP status code | David Baker | 1 | -5/+5 | |
2017-04-21 | Do the same for get_json | David Baker | 1 | -8/+21 | |
2017-04-21 |