Skip to content

Commit

Permalink
third_party: bump memtier version
Browse files Browse the repository at this point in the history
Many changes added since 2015, see [1].

1. https://github.com/RedisLabs/memtier_benchmark/compare/40d47a0e..820605c7

Closes #91
  • Loading branch information
ligurio committed Dec 20, 2021
1 parent 994f445 commit b385fc1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion third_party/memtier
Submodule memtier updated 63 files
+115 −0 .github/workflows/ci.yml
+11 −1 .gitignore
+55 −0 CHANGES
+24 −0 Dockerfile
+137 −0 JSON_handler.cpp
+55 −0 JSON_handler.h
+25 −6 Makefile.am
+10 −0 README.import
+88 −8 README.md
+113 −0 bash-completion/memtier_benchmark
+215 −1,026 client.cpp
+92 −154 client.h
+482 −0 cluster_client.cpp
+62 −0 cluster_client.h
+319 −6 config_types.cpp
+133 −3 config_types.h
+31 −3 configure.ac
+45 −0 connections_manager.h
+5 −0 debian/changelog
+24 −0 debian/control
+41 −0 debian/copyright
+1 −0 debian/manpages
+8 −0 debian/rules
+5 −0 debian/watch
+121 −0 deps/hdr_histogram/COPYING.txt
+41 −0 deps/hdr_histogram/LICENSE.txt
+10 −0 deps/hdr_histogram/README.md
+101 −0 deps/hdr_histogram/byteorder.h
+146 −0 deps/hdr_histogram/hdr_atomic.h
+321 −0 deps/hdr_histogram/hdr_encoding.c
+79 −0 deps/hdr_histogram/hdr_encoding.h
+116 −0 deps/hdr_histogram/hdr_endian.h
+1,154 −0 deps/hdr_histogram/hdr_histogram.c
+512 −0 deps/hdr_histogram/hdr_histogram.h
+1,312 −0 deps/hdr_histogram/hdr_histogram_log.c
+253 −0 deps/hdr_histogram/hdr_histogram_log.h
+98 −0 deps/hdr_histogram/hdr_time.c
+49 −0 deps/hdr_histogram/hdr_time.h
+11 −0 docker-compose.memcached.yml
+11 −0 docker-compose.redis.yml
+ docs/sample_visual_histogram.png
+23 −23 file_io.cpp
+2 −2 file_io.h
+6 −6 item.cpp
+3 −3 item.h
+104 −39 memtier_benchmark.1
+623 −108 memtier_benchmark.cpp
+35 −5 memtier_benchmark.h
+120 −68 obj_gen.cpp
+25 −18 obj_gen.h
+436 −82 protocol.cpp
+117 −20 protocol.h
+1,342 −0 run_stats.cpp
+182 −0 run_stats.h
+283 −0 run_stats_types.cpp
+186 −0 run_stats_types.h
+634 −0 shard_connection.cpp
+188 −0 shard_connection.h
+1 −0 tests/.gitignore
+108 −0 tests/include.py
+39 −0 tests/regression.json
+4 −0 tests/test_requirements.txt
+146 −0 tests/tests_oss_simple_flow.py

0 comments on commit b385fc1

Please sign in to comment.