mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-05-25 14:50:49 -04:00
Cache filters
This commit is contained in:
parent
49c328a892
commit
8fe8951a8d
1 changed files with 2 additions and 1 deletions
|
@ -16,12 +16,13 @@
|
|||
from twisted.internet import defer
|
||||
|
||||
from ._base import SQLBaseStore
|
||||
from synapse.util.caches.descriptors import cachedInlineCallbacks
|
||||
|
||||
import simplejson as json
|
||||
|
||||
|
||||
class FilteringStore(SQLBaseStore):
|
||||
@defer.inlineCallbacks
|
||||
@cachedInlineCallbacks(num_args=2)
|
||||
def get_user_filter(self, user_localpart, filter_id):
|
||||
def_json = yield self._simple_select_one_onecol(
|
||||
table="user_filters",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue