mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2024-10-01 11:49:51 -04:00
Move @cached decorator out into synapse.storage._base; add minimal docs
This commit is contained in:
parent
61959928bb
commit
077d200342
@ -35,6 +35,41 @@ sql_logger = logging.getLogger("synapse.storage.SQL")
|
|||||||
transaction_logger = logging.getLogger("synapse.storage.txn")
|
transaction_logger = logging.getLogger("synapse.storage.txn")
|
||||||
|
|
||||||
|
|
||||||
|
# TODO(paul):
|
||||||
|
# * Move this somewhere higher-level, shared;
|
||||||
|
# * more generic key management
|
||||||
|
# * export monitoring stats
|
||||||
|
# * maximum size; just evict things at random, or consider LRU?
|
||||||
|
def cached(orig):
|
||||||
|
""" A method decorator that applies a memoizing cache around the function.
|
||||||
|
|
||||||
|
The function is presumed to take one additional argument, which is used as
|
||||||
|
the key for the cache. Cache hits are served directly from the cache;
|
||||||
|
misses use the function body to generate the value.
|
||||||
|
|
||||||
|
The wrapped function has an additional member, a callable called
|
||||||
|
"invalidate". This can be used to remove individual entries from the cache.
|
||||||
|
"""
|
||||||
|
cache = {}
|
||||||
|
|
||||||
|
@defer.inlineCallbacks
|
||||||
|
def wrapped(self, key):
|
||||||
|
if key in cache:
|
||||||
|
defer.returnValue(cache[key])
|
||||||
|
|
||||||
|
ret = yield orig(self, key)
|
||||||
|
|
||||||
|
cache[key] = ret;
|
||||||
|
defer.returnValue(ret)
|
||||||
|
|
||||||
|
def invalidate(key):
|
||||||
|
if key in cache:
|
||||||
|
del cache[key]
|
||||||
|
|
||||||
|
wrapped.invalidate = invalidate
|
||||||
|
return wrapped
|
||||||
|
|
||||||
|
|
||||||
class LoggingTransaction(object):
|
class LoggingTransaction(object):
|
||||||
"""An object that almost-transparently proxies for the 'txn' object
|
"""An object that almost-transparently proxies for the 'txn' object
|
||||||
passed to the constructor. Adds logging to the .execute() method."""
|
passed to the constructor. Adds logging to the .execute() method."""
|
||||||
|
@ -17,7 +17,7 @@ from twisted.internet import defer
|
|||||||
|
|
||||||
from collections import namedtuple
|
from collections import namedtuple
|
||||||
|
|
||||||
from ._base import SQLBaseStore
|
from ._base import SQLBaseStore, cached
|
||||||
|
|
||||||
from synapse.api.constants import Membership
|
from synapse.api.constants import Membership
|
||||||
from synapse.types import UserID
|
from synapse.types import UserID
|
||||||
@ -33,32 +33,6 @@ RoomsForUser = namedtuple(
|
|||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
# TODO(paul):
|
|
||||||
# * Move this somewhere higher-level, shared;
|
|
||||||
# * more generic key management
|
|
||||||
# * export monitoring stats
|
|
||||||
# * maximum size; just evict things at random, or consider LRU?
|
|
||||||
def cached(orig):
|
|
||||||
cache = {}
|
|
||||||
|
|
||||||
@defer.inlineCallbacks
|
|
||||||
def wrapped(self, key):
|
|
||||||
if key in cache:
|
|
||||||
defer.returnValue(cache[key])
|
|
||||||
|
|
||||||
ret = yield orig(self, key)
|
|
||||||
|
|
||||||
cache[key] = ret;
|
|
||||||
defer.returnValue(ret)
|
|
||||||
|
|
||||||
def invalidate(key):
|
|
||||||
if key in cache:
|
|
||||||
del cache[key]
|
|
||||||
|
|
||||||
wrapped.invalidate = invalidate
|
|
||||||
return wrapped
|
|
||||||
|
|
||||||
|
|
||||||
class RoomMemberStore(SQLBaseStore):
|
class RoomMemberStore(SQLBaseStore):
|
||||||
|
|
||||||
def __init__(self, *args, **kw):
|
def __init__(self, *args, **kw):
|
||||||
|
Loading…
Reference in New Issue
Block a user