Signature returns the ring's hash signature. Two identical ringhashes will have the same signature. Two hashes with different number of keys or replicas or hash functions will have different signatures.
()
| 124 | // number of keys or replicas or hash functions will have different |
| 125 | // signatures. |
| 126 | func (ring *Ring) Signature() string { |
| 127 | return ring.signature |
| 128 | } |
| 129 | |
| 130 | func (ring *Ring) dump() { |
| 131 | for _, e := range ring.keys { |
no outgoing calls