(
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,
)
| 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( |
nothing calls this directly
no test coverage detected