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

Method dump

redis/commands/core.py:2941–2941  ·  view source on GitHub ↗
(self: SyncClientProtocol, name: KeyT)

Source from the content-addressed store, hash-verified

2939
2940 @overload
2941 def dump(self: SyncClientProtocol, name: KeyT) -> bytes | None: ...
2942
2943 @overload
2944 def dump(self: AsyncClientProtocol, name: KeyT) -> Awaitable[bytes | None]: ...

Calls 1

execute_commandMethod · 0.45