]>
git.saurik.com Git - redis.git/blob - client-libraries/ruby/lib/dist_redis.rb
5 def initialize(opts
={})
9 timeout
= opts
[:timeout] || nil
11 raise Error
, "No hosts given" unless opts
[:hosts]
13 opts
[:hosts].each
do |h
|
14 host
, port
= h
.split(':')
15 hosts
<< Redis
.new(:host => host
, :port => port
, :db => db
, :timeout => timeout
, :db => db
)
18 @ring = HashRing
.new hosts
28 def add_server(server
)
29 server
, port
= server
.split(':')
30 @ring.add_node Redis
.new(:host => server
, :port => port
)
33 def method_missing(sym
, *args
, &blk
)
34 if redis
= node_for_key(args
.first
.to_s
)
35 redis
.send sym
, *args
, &blk
43 @ring.nodes
.each
do |red
|
44 keyz
.concat red
.keys(glob
)
50 @ring.nodes
.each
do |red
|
56 @ring.nodes
.each
do |red
|
62 @ring.nodes
.each
do |red
|
68 @ring.nodes
.each
do |red
|
69 red
.keys("*").each
do |key
|
80 r
= DistRedis
.new
'localhost:6379', 'localhost:6380', 'localhost:6381', 'localhost:6382'
83 r
['urmom1'] = 'urmom1'
84 r
['urdad1'] = 'urdad1'
85 r
['urmom2'] = 'urmom2'
86 r
['urdad2'] = 'urdad2'
87 r
['urmom3'] = 'urmom3'
88 r
['urdad3'] = 'urdad3'
98 r
.push_tail
'listor', 'foo1'
99 r
.push_tail
'listor', 'foo2'
100 r
.push_tail
'listor', 'foo3'
101 r
.push_tail
'listor', 'foo4'
102 r
.push_tail
'listor', 'foo5'
104 p r
.pop_tail('listor')
105 p r
.pop_tail('listor')
106 p r
.pop_tail('listor')
107 p r
.pop_tail('listor')
108 p r
.pop_tail('listor')
110 puts
"key distribution:"
112 r
.ring
.nodes
.each
do |red
|
113 p
[red
.port
, red
.keys("*")]