public
Description: Memcached -- you all use it. Get it here.
Homepage: http://www.danga.com/memcached/
Clone URL: git://github.com/dustin/memcached.git
memcached / assoc.h
100644 8 lines (7 sloc) 0.296 kb
1
2
3
4
5
6
7
8
/* associative array */
void assoc_init(void);
item *assoc_find(const char *key, const size_t nkey);
int assoc_insert(item *item);
void assoc_delete(const char *key, const size_t nkey);
void do_assoc_move_next_bucket(void);
uint32_t hash( const void *key, size_t length, const uint32_t initval);