Percona murmur_hash,fnv_64和fnv1a_64函数

时间:2017-05-15 03:04:47

标签: mysql percona xtradb

有人可以帮我理解Percona在安装后立即建议的这三种功能的用途和好处吗?

* Percona XtraDB Cluster is distributed with several useful UDF (User Defined Function) from Percona Toolkit.
 * Run the following commands to create these functions:

        mysql -e "CREATE FUNCTION fnv1a_64 RETURNS INTEGER SONAME 'libfnv1a_udf.so'"
        mysql -e "CREATE FUNCTION fnv_64 RETURNS INTEGER SONAME 'libfnv_udf.so'"
        mysql -e "CREATE FUNCTION murmur_hash RETURNS INTEGER SONAME 'libmurmur_udf.so'"

 * See http://www.percona.com/doc/percona-server/5.7/management/udf_percona_toolkit.html for more details

我从来没有找到能够清楚地解释这些功能的文档,以及从中获得的好处/优势。

1 个答案:

答案 0 :(得分:1)

这些功能的好处是“更快的校验和”......即。更高效的几个散列函数的实现。

但如果您有需要(要求)生成这些哈希函数提供的值,那么这只会带来好处。

如果您不需要生成哈希值,那么这些功能不会带来任何好处。

参考文献:

http://en.wikipedia.org/wiki/Fowler%E2%80%93Noll%E2%80%93Vo_hash_function

http://en.wikipedia.org/wiki/MurmurHash

http://en.wikipedia.org/wiki/Hash_function