MCPcopy
hub / github.com/datascale-ai/opentalking / get

Method get

opentalking/core/in_memory_redis.py:125–127  ·  view source on GitHub ↗
(self, name: str)

Source from the content-addressed store, hash-verified

123 return True
124
125 async def get(self, name: str) -> bytes | None:
126 self._purge_if_expired(name)
127 return self._kv.get(name)
128
129 async def rpush(self, name: str, *values: str) -> int:
130 _ = name # only TASK_QUEUE used

Callers 15

runFunction · 0.95
get_client_ipFunction · 0.80
record_analytics_eventFunction · 0.80
build_seven_day_trafficFunction · 0.80
render_traffic_dashboardFunction · 0.80
render_tableFunction · 0.80
_unified_uvicorn_workersFunction · 0.80
_env_boolFunction · 0.80
_adapter_deviceFunction · 0.80
unified_lifespanFunction · 0.80
mainFunction · 0.80

Calls 1

_purge_if_expiredMethod · 0.95