1hashkit_jenkins.pop(3)          hashkit_jenkins         hashkit_jenkins.pop(3)
2
3
4

NAME

6       hashkit_default, hashkit_fnv1_64, hashkit_fnv1a_64, hashkit_fnv1_32,
7       hashkit_fnv1a_32, hashkit_crc32, hashkit_hsieh, hashkit_murmur,
8       hashkit_jenkins, hashkit_md5 - Various hash functions to use for
9       calculating values for keys
10

LIBRARY

12       C Library for hashing algorithms (libhashkit, -lhashkit)
13

SYNOPSIS

15         #include <libhashkit/hashkit.h>
16
17         uint32_t hashkit_default(const char *key, size_t key_length);
18         uint32_t hashkit_fnv1_64(const char *key, size_t key_length);
19         uint32_t hashkit_fnv1a_64(const char *key, size_t key_length);
20         uint32_t hashkit_fnv1_32(const char *key, size_t key_length);
21         uint32_t hashkit_fnv1a_32(const char *key, size_t key_length);
22         uint32_t hashkit_crc32(const char *key, size_t key_length);
23         uint32_t hashkit_hsieh(const char *key, size_t key_length);
24         uint32_t hashkit_murmur(const char *key, size_t key_length);
25         uint32_t hashkit_jenkins(const char *key, size_t key_length);
26         uint32_t hashkit_md5(const char *key, size_t key_length);
27

DESCRIPTION

29       These functions generate hash values from a key using a variety of
30       algorithms. These functions can be used standalone, or as arguments to
31       hashkit_set_hash_fn(3) or hashkit_set_continuum_hash_fn(3).
32
33       The hashkit_hsieh() is only available if the library is built with the
34       appropriate flag enabled.
35

RETURN VALUE

37       A 32-bit hash value.
38

HOME

40       To find out more information please check:
41       <https://launchpad.net/libmemcached>
42

AUTHOR

44       Brian Aker, <brian@tangent.org>
45

SEE ALSO

47       hashkit_create(3) hashkit_value(3) hashkit_set_hash_fn(3)
48       hashkit_set_continuum_hash_fn(3)
49
50
51
52                                  2010-06-28            hashkit_jenkins.pop(3)
Impressum