We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 41a8db7 commit 9a0ec5aCopy full SHA for 9a0ec5a
test/bench_command.rb
@@ -16,10 +16,10 @@ def teardown
16
@client&.close
17
end
18
19
- def bench_ping
+ def bench_echo
20
assert_performance_linear do |n|
21
n.times do
22
- @client.call('PING')
+ @client.call('ECHO', 'Hello world')
23
24
25
@@ -40,11 +40,11 @@ def bench_get
40
41
42
43
- def bench_pipeline_ping
+ def bench_pipeline_echo
44
45
@client.pipelined do |pi|
46
47
- pi.call('PING')
+ pi.call('ECHO', 'Hello world')
48
49
50
0 commit comments