1hashkit_value.pop(3) hashkit_value hashkit_value.pop(3)
2
3
4
6 hashkit_value - Generate a value for the given key
7
9 C Library for hashing algorithms (libhashkit, -lhashkit)
10
12 #include <libhashkit/hashkit.h>
13
14 uint32_t hashkit_value(hashkit_st *hash,
15 const char *key,
16 size_t key_length);
17
19 The hashkit_value() function generates a 32-bit hash value from the
20 given key and key_length. The hash argument is an initialized hashkit
21 object, and distribution type and hash function is used from this
22 object while generating the value.
23
25 A 32-bit hash value.
26
28 To find out more information please check:
29 <https://launchpad.net/libmemcached>
30
32 Brian Aker, <brian@tangent.org>
33
35 hashkit_create(3) hashkit_set_distribution(3) hashkit_set_hash_fn(3)
36
37
38
39 2010-06-28 hashkit_value.pop(3)