from string.c:1901:
/* MurmurHash described in http://murmurhash.googlepages.com/ */ static unsigned int hash(const unsigned char * data,int len,unsigned int h)
(注意,这个函数似乎重命名为SVN主干中的st_hash)
在源代码中搜索rb_memhash,如果你想知道它在哪里被使用.我以前在自己的项目中使用了Murmur2哈希,它非常快,具有很好的加密属性(但不够好用作加密哈希函数).