Class: Redis::HashRing
- Inherits:
-
Object
- Object
- Redis::HashRing
- Defined in:
- lib/redis/hash_ring.rb
Constant Summary collapse
- POINTS_PER_SERVER =
this is the default in libmemcached
160
Instance Attribute Summary collapse
-
#nodes ⇒ Object
readonly
Returns the value of attribute nodes.
-
#replicas ⇒ Object
readonly
Returns the value of attribute replicas.
-
#ring ⇒ Object
readonly
Returns the value of attribute ring.
-
#sorted_keys ⇒ Object
readonly
Returns the value of attribute sorted_keys.
Instance Method Summary collapse
-
#add_node(node) ⇒ Object
Adds a ‘node` to the hash ring (including a number of replicas).
-
#get_node(key) ⇒ Object
get the node in the hash ring for this key.
- #get_node_pos(key) ⇒ Object
-
#initialize(nodes = [], replicas = POINTS_PER_SERVER) ⇒ HashRing
constructor
nodes is a list of objects that have a proper to_s representation.
- #iter_nodes(key) ⇒ Object
- #remove_node(node) ⇒ Object
Constructor Details
#initialize(nodes = [], replicas = POINTS_PER_SERVER) ⇒ HashRing
nodes is a list of objects that have a proper to_s representation. replicas indicates how many virtual points should be used pr. node, replicas are required to improve the distribution.
13 14 15 16 17 18 19 20 21 |
# File 'lib/redis/hash_ring.rb', line 13 def initialize(nodes=[], replicas=POINTS_PER_SERVER) @replicas = replicas @ring = {} @nodes = [] @sorted_keys = [] nodes.each do |node| add_node(node) end end |
Instance Attribute Details
#nodes ⇒ Object (readonly)
Returns the value of attribute nodes.
8 9 10 |
# File 'lib/redis/hash_ring.rb', line 8 def nodes @nodes end |
#replicas ⇒ Object (readonly)
Returns the value of attribute replicas.
8 9 10 |
# File 'lib/redis/hash_ring.rb', line 8 def replicas @replicas end |
#ring ⇒ Object (readonly)
Returns the value of attribute ring.
8 9 10 |
# File 'lib/redis/hash_ring.rb', line 8 def ring @ring end |
#sorted_keys ⇒ Object (readonly)
Returns the value of attribute sorted_keys.
8 9 10 |
# File 'lib/redis/hash_ring.rb', line 8 def sorted_keys @sorted_keys end |
Instance Method Details
#add_node(node) ⇒ Object
Adds a ‘node` to the hash ring (including a number of replicas).
24 25 26 27 28 29 30 31 32 |
# File 'lib/redis/hash_ring.rb', line 24 def add_node(node) @nodes << node @replicas.times do |i| key = Zlib.crc32("#{node.id}:#{i}") @ring[key] = node @sorted_keys << key end @sorted_keys.sort! end |
#get_node(key) ⇒ Object
get the node in the hash ring for this key
44 45 46 |
# File 'lib/redis/hash_ring.rb', line 44 def get_node(key) get_node_pos(key)[0] end |
#get_node_pos(key) ⇒ Object
48 49 50 51 52 53 |
# File 'lib/redis/hash_ring.rb', line 48 def get_node_pos(key) return [nil,nil] if @ring.size == 0 crc = Zlib.crc32(key) idx = HashRing.binary_search(@sorted_keys, crc) return [@ring[@sorted_keys[idx]], idx] end |
#iter_nodes(key) ⇒ Object
55 56 57 58 59 60 61 |
# File 'lib/redis/hash_ring.rb', line 55 def iter_nodes(key) return [nil,nil] if @ring.size == 0 node, pos = get_node_pos(key) @sorted_keys[pos..-1].each do |k| yield @ring[k] end end |
#remove_node(node) ⇒ Object
34 35 36 37 38 39 40 41 |
# File 'lib/redis/hash_ring.rb', line 34 def remove_node(node) @nodes.reject!{|n| n.id == node.id} @replicas.times do |i| key = Zlib.crc32("#{node.id}:#{i}") @ring.delete(key) @sorted_keys.reject! {|k| k == key} end end |