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

Method decrby

redis/commands/timeseries/commands.py:513–525  ·  view source on GitHub ↗
(
        self: SyncClientProtocol,
        key: KeyT,
        value: Number,
        timestamp: int | str | None = None,
        retention_msecs: int | None = None,
        uncompressed: bool | None = False,
        labels: Dict[str, str] | None = None,
        chunk_size: int | None = None,
        duplicate_policy: str | None = None,
        ignore_max_time_diff: int | None = None,
        ignore_max_val_diff: Number | None = None,
    )

Source from the content-addressed store, hash-verified

511
512 @overload
513 def decrby(
514 self: SyncClientProtocol,
515 key: KeyT,
516 value: Number,
517 timestamp: int | str | None = None,
518 retention_msecs: int | None = None,
519 uncompressed: bool | None = False,
520 labels: Dict[str, str] | None = None,
521 chunk_size: int | None = None,
522 duplicate_policy: str | None = None,
523 ignore_max_time_diff: int | None = None,
524 ignore_max_val_diff: Number | None = None,
525 ) -> int: ...
526
527 @overload
528 def decrby(

Callers

nothing calls this directly

Calls 8

_append_timestampMethod · 0.95
_append_retentionMethod · 0.95
_append_uncompressedMethod · 0.95
_append_chunk_sizeMethod · 0.95
_append_labelsMethod · 0.95
execute_commandMethod · 0.45

Tested by

no test coverage detected