Skip to content

Commit

Permalink
docs(README): fix wrong section link for benchmark (#1269)
Browse files Browse the repository at this point in the history
  • Loading branch information
hamdibayhan authored Jan 14, 2021
1 parent 72bde8f commit be5d53f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ redis.getBuffer("foo", (err, result) => {
## Pipelining

If you want to send a batch of commands (e.g. > 5), you can use pipelining to queue
the commands in memory and then send them to Redis all at once. This way the performance improves by 50%~300% (See [benchmark section](#benchmark)).
the commands in memory and then send them to Redis all at once. This way the performance improves by 50%~300% (See [benchmark section](#benchmarks)).

`redis.pipeline()` creates a `Pipeline` instance. You can call any Redis
commands on it just like the `Redis` instance. The commands are queued in memory
Expand Down

0 comments on commit be5d53f

Please sign in to comment.