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

Method incrby

redis/commands/timeseries/commands.py:391–403  ·  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

389
390 @overload
391 def incrby(
392 self: SyncClientProtocol,
393 key: KeyT,
394 value: Number,
395 timestamp: int | str | None = None,
396 retention_msecs: int | None = None,
397 uncompressed: bool | None = False,
398 labels: Dict[str, str] | None = None,
399 chunk_size: int | None = None,
400 duplicate_policy: str | None = None,
401 ignore_max_time_diff: int | None = None,
402 ignore_max_val_diff: Number | None = None,
403 ) -> int: ...
404
405 @overload
406 def incrby(

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