Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 2 additions & 0 deletions Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ memtier_benchmark_CPPFLAGS = $(LIBEVENT_CFLAGS)
memtier_benchmark_SOURCES = \
memtier_benchmark.cpp memtier_benchmark.h \
client.cpp client.h \
cluster_client.cpp cluster_client.h \
shard_connection.cpp shard_connection.h connections_manager.h \
JSON_handler.cpp JSON_handler.h \
protocol.cpp protocol.h \
obj_gen.cpp obj_gen.h \
Expand Down
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ memtier_benchmark is a command line utility developed by Redis Labs (formerly Ga
* Read:Write ratio
* Random and sequential key name pattern policies
* Random or ranged key expiration
* Redis cluster
* ...and much more

Read more at:
Expand Down Expand Up @@ -73,6 +74,13 @@ On recent Ubuntu versions, simply install all prerequisites as follows:
```


### Cluster mode

In case where there is some asymmetry between the redis nodes, and user set
the number of total requests with sequential key pattern options, it might be
gaps in the generated keys.


### Building and installing

After downloading the source tree, use standard autoconf/automake commands::
Expand Down
Loading