X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=clients%2Futilities.c;h=b5755ee12139dab629e23a342ef786b8b94049f0;hb=6a0e41c00d8ef3e8814e3b82257694a5692b95c7;hp=d19f57ec8914d8a7c99cdd21131673692d2b343d;hpb=34a8c3858f30b02568c87f56a827f618aba6d6be;p=awesomized%2Flibmemcached diff --git a/clients/utilities.c b/clients/utilities.c index d19f57ec..b5755ee1 100644 --- a/clients/utilities.c +++ b/clients/utilities.c @@ -37,7 +37,7 @@ char *lookup_help(memcached_options option) case OPT_ADD: return("Use add command with memcached when storing."); case OPT_SLAP_EXECUTE_NUMBER: return("Number of times to execute the given test."); case OPT_SLAP_INITIAL_LOAD: return("Number of key pairs to load before executing tests."); - case OPT_SLAP_TEST: return("Test to run."); + case OPT_SLAP_TEST: return("Test to run (currently \"get\" or \"set\")."); case OPT_SLAP_CONCURRENCY: return("Number of users to simulate with load."); 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."); @@ -92,8 +92,6 @@ void process_hash_option(memcached_st *memc, char *opt_hash) 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);