forked from redis/redis-rb
-
Notifications
You must be signed in to change notification settings - Fork 10
/
synchrony_driver.rb
57 lines (41 loc) · 1.09 KB
/
synchrony_driver.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# encoding: UTF-8
require 'em-synchrony'
require 'redis'
require 'redis/connection/synchrony'
require File.expand_path("./helper", File.dirname(__FILE__))
#
# if running under Eventmachine + Synchrony (Ruby 1.9+), then
# we can simulate the blocking API while performing the network
# IO via the EM reactor.
#
EM.synchrony do
r = Redis.new
r.flushdb
r.rpush "foo", "s1"
r.rpush "foo", "s2"
assert 2 == r.llen("foo")
assert "s2" == r.rpop("foo")
r.set("foo", "bar")
assert "bar" == r.getset("foo", "baz")
assert "baz" == r.get("foo")
r.set("foo", "a")
assert_equal 1, r.getbit("foo", 1)
assert_equal 1, r.getbit("foo", 2)
assert_equal 0, r.getbit("foo", 3)
assert_equal 0, r.getbit("foo", 4)
assert_equal 0, r.getbit("foo", 5)
assert_equal 0, r.getbit("foo", 6)
assert_equal 1, r.getbit("foo", 7)
r.flushdb
# command pipelining
r.pipelined do
r.lpush "foo", "s1"
r.lpush "foo", "s2"
end
assert 2 == r.llen("foo")
assert "s2" == r.lpop("foo")
assert "s1" == r.lpop("foo")
assert "OK" == r.client.call(:quit)
assert "PONG" == r.ping
EM.stop
end