1HASHKIT_FNV1A_32(3) libmemcached HASHKIT_FNV1A_32(3)
2
3
4
6 hashkit_fnv1a_32 - libhashkit Documentation
7
8 Various hash functions to use for calculating values for keys
9
11 #include <libhashkit/hashkit.h>
12
13 uint32_t hashkit_default(const char *key, size_t key_length)
14
15 uint32_t hashkit_fnv1_64(const char *key, size_t key_length)
16
17 uint32_t hashkit_fnv1a_64(const char *key, size_t key_length)
18
19 uint32_t hashkit_fnv1_32(const char *key, size_t key_length)
20
21 uint32_t hashkit_fnv1a_32(const char *key, size_t key_length)
22
23 uint32_t hashkit_crc32(const char *key, size_t key_length)
24
25 uint32_t hashkit_hsieh(const char *key, size_t key_length)
26
27 uint32_t hashkit_murmur(const char *key, size_t key_length)
28
29 uint32_t hashkit_jenkins(const char *key, size_t key_length)
30
31 uint32_t hashkit_md5(const char *key, size_t key_length)
32
33 Compile and link with -lhashkit
34
36 These functions generate hash values from a key using a variety of
37 algorithms. These functions can be used standalone, or as arguments to
38 hashkit_set_hash_fn(3) or hashkit_set_continuum_hash_fn(3).
39
40 The hashkit_hsieh is only available if the library is built with the
41 appropriate flag enabled.
42
44 A 32-bit hash value.
45
47 To find out more information please check: http://libmemcached.org/
48
50 hashkit_create(3) hashkit_value(3) hashkit_set_hash_fn(3)
51 hashkit_set_continuum_hash_fn(3)
52
54 Brian Aker
55
57 2011-2013, Brian Aker DataDifferential, http://datadifferential.com/
58
59
60
61
621.0.18 February 09, 2014 HASHKIT_FNV1A_32(3)