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

Method hexpire

redis/commands/core.py:9972–9981  ·  view source on GitHub ↗
(
        self: SyncClientProtocol,
        name: KeyT,
        seconds: ExpiryT,
        *fields: FieldT,
        nx: bool = False,
        xx: bool = False,
        gt: bool = False,
        lt: bool = False,
    )

Source from the content-addressed store, hash-verified

9970
9971 @overload
9972 def hexpire(
9973 self: SyncClientProtocol,
9974 name: KeyT,
9975 seconds: ExpiryT,
9976 *fields: FieldT,
9977 nx: bool = False,
9978 xx: bool = False,
9979 gt: bool = False,
9980 lt: bool = False,
9981 ) -> list[int]: ...
9982
9983 @overload
9984 def hexpire(

Calls 3

sumClass · 0.85
appendMethod · 0.45
execute_commandMethod · 0.45