X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=src%2Futilities.c;h=2a63f9e582a9bf01d9570771c960eaa02344ed0a;hb=f80333febbaae93bf7f5171724873821c41f04e9;hp=1dfd60b254e841680f49b59084bae0ab3ccb8991;hpb=c63f3c2633dbda43dd4cf151edd586a279fc8cbf;p=awesomized%2Flibmemcached diff --git a/src/utilities.c b/src/utilities.c index 1dfd60b2..2a63f9e5 100644 --- a/src/utilities.c +++ b/src/utilities.c @@ -42,9 +42,11 @@ char *lookup_help(memcached_options option) case OPT_SLAP_NON_BLOCK: return("Set TCP up to use non-blocking IO."); case OPT_SLAP_TCP_NODELAY: return("Set TCP socket up to use nodelay."); case OPT_FLUSH: return("Flush servers before running tests."); + case OPT_HASH: return("Select hash type."); }; - return "forgot to document this one :)"; + WATCHPOINT_ASSERT(0); + return "forgot to document this function :)"; } void help_command(char *command_name, char *description, @@ -70,3 +72,38 @@ void help_command(char *command_name, char *description, printf("\n"); exit(0); } + +void process_hash_option(memcached_st *memc, char *opt_hash) +{ + uint64_t set; + memcached_return rc; + + if (opt_hash == NULL) + return; + + if (!strcasecmp(opt_hash, "CRC")) + set= MEMCACHED_HASH_CRC; + else if (!strcasecmp(opt_hash, "FNV1_64")) + set= MEMCACHED_HASH_FNV1_64; + else if (!strcasecmp(opt_hash, "FNV1A_64")) + set= MEMCACHED_HASH_FNV1A_64; + else if (!strcasecmp(opt_hash, "FNV1_32")) + set= MEMCACHED_HASH_FNV1_32; + else if (!strcasecmp(opt_hash, "FNV1A_32")) + set= MEMCACHED_HASH_FNV1A_32; + else if (!strcasecmp(opt_hash, "KETAMA")) + set= MEMCACHED_HASH_KETAMA; + else + { + fprintf(stderr, "hash: type not recognized %s\n", opt_hash); + exit(1); + } + + rc= memcached_behavior_set(memc, MEMCACHED_BEHAVIOR_HASH, set); + if (rc != MEMCACHED_SUCCESS) + { + fprintf(stderr, "hash: memcache error %s\n", memcached_strerror(memc, rc)); + exit(1); + } +} +