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
4 changes: 2 additions & 2 deletions content/commands/incr/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -177,8 +177,8 @@ value greater than 10, otherwise it will expire and start again from 0.
If for some reason the client performs the `INCR` command but does not perform
the [`EXPIRE`]({{< relref "/commands/expire" >}}) the key will be leaked until we'll see the same IP address again.

This can be fixed easily turning the `INCR` with optional [`EXPIRE`]({{< relref "/commands/expire" >}}) into a Lua
script that is send using the [`EVAL`]({{< relref "/commands/eval" >}}) command (only available since Redis version
This can be easily fixed by turning the `INCR` with optional [`EXPIRE`]({{< relref "/commands/expire" >}}) into a Lua
script that is then sent using the [`EVAL`]({{< relref "/commands/eval" >}}) command (only available since Redis version
2.6).

```
Expand Down