1

有人可以帮助我了解 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

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

4

1 回答 1

2

这些函数的好处是“更快的校验和”......即几个哈希函数的更有效实现。

但这只有在您需要(要求)生成这些散列函数提供的值时才有用。

如果您不需要生成哈希值,那么这些函数不会提供任何好处。

参考:

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

于 2017-05-15T03:20:07.587 回答