summaryrefslogtreecommitdiff
path: root/deps/Makefile
diff options
context:
space:
mode:
authorfilipe oliveira <filipecosta.90@gmail.com>2020-08-25 19:21:29 +0100
committerGitHub <noreply@github.com>2020-08-25 21:21:29 +0300
commit21784def707d3b36e17619dc620917eeea805bc8 (patch)
tree33e95dd28062ea16be8bd1ae1fc8aa8a5bce739a /deps/Makefile
parent5b0a06af48997794af60dabb58ce4336ef56f73d (diff)
downloadredis-21784def707d3b36e17619dc620917eeea805bc8.tar.gz
Extended redis-benchmark instant metrics and overall latency report (#7600)
A first step to enable a consistent full percentile analysis on query latency so that we can fully understand the performance and stability characteristics of the redis-server system we are measuring. It also improves the instantaneous reported metrics, and the csv output format.
Diffstat (limited to 'deps/Makefile')
-rw-r--r--deps/Makefile7
1 files changed, 7 insertions, 0 deletions
diff --git a/deps/Makefile b/deps/Makefile
index 700867f3b..0815d15de 100644
--- a/deps/Makefile
+++ b/deps/Makefile
@@ -37,6 +37,7 @@ distclean:
-(cd linenoise && $(MAKE) clean) > /dev/null || true
-(cd lua && $(MAKE) clean) > /dev/null || true
-(cd jemalloc && [ -f Makefile ] && $(MAKE) distclean) > /dev/null || true
+ -(cd hdr_histogram && $(MAKE) clean) > /dev/null || true
-(rm -f .make-*)
.PHONY: distclean
@@ -57,6 +58,12 @@ linenoise: .make-prerequisites
.PHONY: linenoise
+hdr_histogram: .make-prerequisites
+ @printf '%b %b\n' $(MAKECOLOR)MAKE$(ENDCOLOR) $(BINCOLOR)$@$(ENDCOLOR)
+ cd hdr_histogram && $(MAKE)
+
+.PHONY: hdr_histogram
+
ifeq ($(uname_S),SunOS)
# Make isinf() available
LUA_CFLAGS= -D__C99FEATURES__=1