mirror of https://github.com/zulip/zulip.git
20 lines
663 B
Python
20 lines
663 B
Python
import pickle
|
|
from functools import lru_cache
|
|
from typing import Any
|
|
|
|
from django_bmemcached.memcached import BMemcached
|
|
|
|
|
|
@lru_cache(None)
|
|
def _get_bmemcached(location: str, params: bytes) -> BMemcached:
|
|
return BMemcached(location, pickle.loads(params)) # noqa: S301
|
|
|
|
|
|
def SingletonBMemcached(location: str, params: dict[str, Any]) -> BMemcached:
|
|
# Django instantiates the cache backend per-task to guard against
|
|
# thread safety issues, but BMemcached is already thread-safe and
|
|
# does its own per-thread pooling, so make sure we instantiate only
|
|
# one to avoid extra connections.
|
|
|
|
return _get_bmemcached(location, pickle.dumps(params))
|