A hash collision is possible at /consistent.go#L76. That means the consistency of results is dependent on the order of Add() calls.
I think the easiest fix is to get rid of Consistent.circle altogether and just use .sortedHashes to keep something like struct {hash uint32, key string}.
search() would have to be updated to compare not just the hashes but key values too.
Regardless of this bug, Consistent.circle adds unnecessary complexity.