Inside of libmemcachd (aka the library behind the memcache engine for MySQL) I have a big stack of
hash algorithms you can pick to use. libmemcached
splits hashing into two concepts.
Hash used for key distribution
Algorithm used for distribution
For the hashing there is a default method that I use. It is
pretty generic in nature. There are two other primary methods are
MD5 and Hsieh.
So what does the performance look like for each of these?
Default: Testing generate_data 14.183 Testing get_read 11.144 Testing mget_read 1.992 Testing mget_read_result …[Read more]