~ubuntu-branches/ubuntu/precise/memcached/precise

« back to all changes in this revision

Viewing changes to assoc.h

  • Committer: Package Import Robot
  • Author(s): Scott Kitterman
  • Date: 2011-12-20 11:10:01 UTC
  • mfrom: (1.1.10)
  • Revision ID: package-import@ubuntu.com-20111220111001-vtqvn3gyffijao4d
Tags: 1.4.10-0ubuntu1
* New upstream release
  - Multiple bug fixes
  - General work on performance improvement
  - Improvements in speed between 3 and 6 worker threads

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* associative array */
2
2
void assoc_init(const int hashpower_init);
3
 
item *assoc_find(const char *key, const size_t nkey);
4
 
int assoc_insert(item *item);
5
 
void assoc_delete(const char *key, const size_t nkey);
 
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
6
void do_assoc_move_next_bucket(void);
7
7
int start_assoc_maintenance_thread(void);
8
8
void stop_assoc_maintenance_thread(void);