Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions content/develop/data-types/strings.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,7 @@ By default, a single Redis string can be a maximum of 512 MB.

### Managing counters

* [`INCR`]({{< relref "/commands/incr" >}}) atomically increments counters stored at a given key by 1.
* [`INCRBY`]({{< relref "/commands/incrby" >}}) atomically increments (and decrements when passing a negative number) counters stored at a given key.
* Another command exists for floating point counters: [`INCRBYFLOAT`]({{< relref "/commands/incrbyfloat" >}}).

Expand Down
Loading