~dave-terei/libmemcached/sasl-fixes

« back to all changes in this revision

Viewing changes to memcached/assoc.h

Merging bzr://gaz.tangent.org/libmemcached/build/ to Build branch

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* associative array */
 
2
void assoc_init(const int hashpower_init);
 
3
item *assoc_find(const char *key, const size_t nkey, const uint32_t hv);
 
4
int assoc_insert(item *item, const uint32_t hv);
 
5
void assoc_delete(const char *key, const size_t nkey, const uint32_t hv);
 
6
void do_assoc_move_next_bucket(void);
 
7
int start_assoc_maintenance_thread(void);
 
8
void stop_assoc_maintenance_thread(void);
 
9