| Commit message (Expand) | Author | Age | Files | Lines |
* | Make ObservableDeferred.observe() always return deferred. | Erik Johnston | 2019-10-30 | 1 | -1/+1 |
* | UPSERT many functionality (#4644) | Amber Brown | 2019-02-20 | 1 | -0/+88 |
* | Run black. | black | 2018-08-10 | 1 | -4/+1 |
* | Rename async to async_helpers because `async` is a keyword on Python 3.7 (#3678) | Amber Brown | 2018-08-10 | 1 | -1/+1 |
* | run isort | Amber Brown | 2018-07-09 | 1 | -4/+4 |
* | Update test | Erik Johnston | 2017-07-04 | 1 | -1/+1 |
* | Fix up tests | Erik Johnston | 2017-03-30 | 1 | -1/+1 |
* | Speed up cache size calculation | Erik Johnston | 2017-01-17 | 1 | -1/+5 |
* | Ensure invalidation list does not grow unboundedly | Erik Johnston | 2016-08-19 | 1 | -0/+48 |
* | Rename to on_invalidate | Erik Johnston | 2016-08-19 | 1 | -2/+2 |
* | Make cache_context an explicit option | Erik Johnston | 2016-08-19 | 1 | -2/+2 |
* | Remove lru option | Erik Johnston | 2016-08-19 | 1 | -1/+1 |
* | Add concept of cache contexts | Erik Johnston | 2016-08-19 | 1 | -0/+66 |
* | Fix flake8 warnings for tests | Mark Haines | 2016-02-19 | 1 | -3/+5 |
* | copyrights | Matthew Hodgson | 2016-01-07 | 1 | -1/+1 |
* | Move all the caches into their own package, synapse.util.caches | Erik Johnston | 2015-08-11 | 1 | -1/+1 |
* | Change Cache to not use *args in its interface | Erik Johnston | 2015-08-07 | 1 | -6/+6 |
* | Make @cached cache deferreds rather than the deferreds' values | Erik Johnston | 2015-08-06 | 1 | -4/+7 |
* | Caches should be bound to instances. | Erik Johnston | 2015-06-03 | 1 | -35/+49 |
* | Allow a choice of LRU behaviour for Cache() by using LruCache() or OrderedDict() | Paul "LeoNerd" Evans | 2015-03-25 | 1 | -0/+22 |
* | Unit-test that Cache() key eviction is ordered | Paul "LeoNerd" Evans | 2015-03-25 | 1 | -0/+18 |
* | Pull out the cache logic from the @cached wrapper into its own class we can r... | Paul "LeoNerd" Evans | 2015-03-20 | 1 | -1/+33 |
* | Use cache.pop() instead of a separate membership test + del [] | Paul "LeoNerd" Evans | 2015-02-23 | 1 | -0/+7 |
* | Allow @cached-wrapped functions to have a prefill method for setting entries | Paul "LeoNerd" Evans | 2015-02-23 | 1 | -0/+14 |
* | Take named arguments to @cached() decorator, add a 'max_entries' limit | Paul "LeoNerd" Evans | 2015-02-19 | 1 | -0/+89 |