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

Method hmget

redis/commands/core.py:9912–9917  ·  view source on GitHub ↗
(
        self: SyncClientProtocol,
        name: KeyT,
        keys: FieldT | Iterable[FieldT],
        *args: FieldT,
    )

Source from the content-addressed store, hash-verified

9910
9911 @overload
9912 def hmget(
9913 self: SyncClientProtocol,
9914 name: KeyT,
9915 keys: FieldT | Iterable[FieldT],
9916 *args: FieldT,
9917 ) -> list[bytes | str | None]: ...
9918
9919 @overload
9920 def hmget(

Calls 2

list_or_argsFunction · 0.85
execute_commandMethod · 0.45