Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2017-01-17 | Lower loading events log to DEBUG | Erik Johnston | 1 | -2/+2 | |
2017-01-17 | Lower the not retrying host log line to debug | Erik Johnston | 1 | -1/+1 | |
2017-01-17 | Change resolve_state_groups call site logging to DEBUG | Erik Johnston | 3 | -6/+6 | |
2017-01-17 | Measure metrics of string_cache | Erik Johnston | 1 | -3/+8 | |
2017-01-17 | PEP8 | Erik Johnston | 1 | -1/+1 | |
2017-01-17 | Only construct sets when necessary | Mark Haines | 1 | -14/+19 | |
2017-01-17 | Use better names | Erik Johnston | 1 | -9/+7 | |
2017-01-17 | Fix typo in return type | Erik Johnston | 1 | -3/+2 | |
2017-01-17 | Use better variable name | Erik Johnston | 1 | -3/+3 | |
2017-01-17 | Get state at event rather than for room in push | Erik Johnston | 1 | -1/+1 | |
2017-01-17 | Correctly handle case of rejected events in state res | Erik Johnston | 1 | -10/+16 | |
2017-01-17 | Check event is in state_map | Erik Johnston | 1 | -2/+7 | |
2017-01-17 | Fix couple of federation state bugs | Erik Johnston | 2 | -3/+5 | |
2017-01-17 | Optimise state resolution | Erik Johnston | 7 | -72/+229 | |
2017-01-17 | Tidy up test | Erik Johnston | 1 | -12/+12 | |
2017-01-17 | Rename and comment tree_to_leaves_iterator | Erik Johnston | 2 | -5/+8 | |
2017-01-17 | Remove needless call to evict() | Erik Johnston | 1 | -1/+0 | |
2017-01-17 | Increase state_group_cache_size | Erik Johnston | 1 | -1/+1 | |
2017-01-17 | Speed up cache size calculation | Erik Johnston | 7 | -62/+148 | |
Instead of calculating the size of the cache repeatedly, which can take a long time now that it can use a callback, instead cache the size and update that on insertion and deletion. This requires changing the cache descriptors to have two caches, one for pending deferreds and the other for the actual va |