I want to use string (almost around 6 to 7 characters approximately) as unique key in composite primary key.
I have googled if using string in primary key will hit performance or not and found that no it will not as Cassandra use hashing for searching on unique key.(someone please confirm this)
So I want to know what techniques does Cassandra use to search on unique key , if it use hashing then which hashing algorithm it use ? And also want to know what Cassandra does in case of collision as in hashing there is always possibility of collision.
Cassandra use murmur3 hashing for working with partition key. Does it use same for searching unique key ? Then what about collision.