Node represents a physical or virtual node in the system
| 8 | |
| 9 | // Node represents a physical or virtual node in the system |
| 10 | type Node struct { |
| 11 | ID string |
| 12 | Addr string |
| 13 | } |
| 14 | |
| 15 | // HashRing represents the consistent hash ring |
| 16 | type HashRing struct { |
nothing calls this directly
no outgoing calls
no test coverage detected