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

Method increx

redis/commands/core.py:3399–3414  ·  view source on GitHub ↗
(
        self: SyncClientProtocol,
        name: KeyT,
        *,
        byfloat: EncodableT | None = None,
        byint: EncodableT | None = None,
        lbound: EncodableT | None = None,
        ubound: EncodableT | None = None,
        saturate: bool = False,
        ex: ExpiryT | None = None,
        px: ExpiryT | None = None,
        exat: AbsExpiryT | None = None,
        pxat: AbsExpiryT | None = None,
        persist: bool = False,
        enx: bool = False,
    )

Source from the content-addressed store, hash-verified

3397
3398 @overload
3399 def increx(
3400 self: SyncClientProtocol,
3401 name: KeyT,
3402 *,
3403 byfloat: EncodableT | None = None,
3404 byint: EncodableT | None = None,
3405 lbound: EncodableT | None = None,
3406 ubound: EncodableT | None = None,
3407 saturate: bool = False,
3408 ex: ExpiryT | None = None,
3409 px: ExpiryT | None = None,
3410 exat: AbsExpiryT | None = None,
3411 pxat: AbsExpiryT | None = None,
3412 persist: bool = False,
3413 enx: bool = False,
3414 ) -> list[Number | bytes | str]: ...
3415
3416 @overload
3417 def increx(

Calls 6

DataErrorClass · 0.90
extract_expire_flagsFunction · 0.90
at_most_one_value_setFunction · 0.85
extendMethod · 0.45
appendMethod · 0.45
execute_commandMethod · 0.45