MCPcopy
hub / github.com/redis/redis-py / __init__

Method __init__

redis/commands/search/__init__.py:179–186  ·  view source on GitHub ↗
(self, connection_pool, response_callbacks, transaction, shard_hint)

Source from the content-addressed store, hash-verified

177 _is_async_client: Literal[False] = False
178
179 def __init__(self, connection_pool, response_callbacks, transaction, shard_hint):
180 # Copy the client's response_callbacks so search-specific entries
181 # don't pollute the shared dict.
182 super().__init__(
183 connection_pool, dict(response_callbacks), transaction, shard_hint
184 )
185 self._init_module_callbacks()
186 self._register_module_callbacks()
187
188 def _register_module_callbacks(self):
189 # Pipeline post-processing matches the pre-migration behavior:

Callers

nothing calls this directly

Calls 3

__init__Method · 0.45

Tested by

no test coverage detected