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

Method hexpireat

redis/commands/core.py:10140–10149  ·  view source on GitHub ↗
(
        self: SyncClientProtocol,
        name: KeyT,
        unix_time_seconds: AbsExpiryT,
        *fields: FieldT,
        nx: bool = False,
        xx: bool = False,
        gt: bool = False,
        lt: bool = False,
    )

Source from the content-addressed store, hash-verified

10138
10139 @overload
10140 def hexpireat(
10141 self: SyncClientProtocol,
10142 name: KeyT,
10143 unix_time_seconds: AbsExpiryT,
10144 *fields: FieldT,
10145 nx: bool = False,
10146 xx: bool = False,
10147 gt: bool = False,
10148 lt: bool = False,
10149 ) -> list[int]: ...
10150
10151 @overload
10152 def hexpireat(

Calls 3

sumClass · 0.85
appendMethod · 0.45
execute_commandMethod · 0.45