Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
ruanhaishen
redis
Commits
6cae609e
Commit
6cae609e
authored
Dec 16, 2016
by
antirez
Browse files
Fix HLL gnuplot graph generator script for new redis-rb versions.
The PFADD now takes an array and has mandatory two arguments.
parent
4d475e0f
Changes
1
Hide whitespace changes
Inline
Side-by-side
utils/hyperloglog/hll-gnuplot-graph.rb
View file @
6cae609e
...
...
@@ -30,7 +30,7 @@ def run_experiment(r,seed,max,step)
elements
<<
ele
i
+=
1
}
r
.
pfadd
(
'hll'
,
*
elements
)
r
.
pfadd
(
'hll'
,
elements
)
approx
=
r
.
pfcount
(
'hll'
)
err
=
approx
-
i
rel_err
=
100
.
to_f
*
err
/
i
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment