acl/lib_acl_cpp/samples/redis/redis_hyperloglog/redis_hyperloglog.cpp

187 lines
3.7 KiB
C++
Raw Normal View History

#include "stdafx.h"
static const char* __keypre = "hyperloglog_";
static bool test_pfadd(acl::redis_hyperloglog& redis, int n)
{
acl::string key, element;
std::vector<acl::string> elements;
elements.reserve(1000);
for (int i = 0; i < 1000; i++)
{
element.format("element_%d", i);
elements.push_back(element);
}
for (int i = 0; i < n; i++)
{
key.format("%s_key_%d", __keypre, i);
redis.clear();
int ret = redis.pfadd(key.c_str(), elements);
if (ret < 0)
{
printf("pfadd error: %s, key: %s\r\n",
redis.result_error(), key.c_str());
return false;
}
if (i >= 10)
continue;
printf("pfadd ok\r\n");
}
return true;
}
static bool test_pfcount(acl::redis_hyperloglog& redis, int n)
{
acl::string key;
std::vector<acl::string> keys;
for (int i = 0; i < n; i++)
{
key.format("%s_key_%d", __keypre, i);
keys.push_back(key);
}
redis.clear();
int ret = redis.pfcount(keys);
if (ret < 0)
{
printf("pfcount error: %s\r\n", redis.result_error());
return false;
}
printf("pfcount ok: %d\r\n", ret);
return true;
}
static bool test_pfmerge(acl::redis_hyperloglog& redis, int n)
{
acl::string key;
std::vector<acl::string> keys;
for (int i = 0; i < n; i++)
{
key.format("%s_key_%d", __keypre, i);
keys.push_back(key);
}
acl::string dest_key;
dest_key.format("%s_dest_key", __keypre);
redis.clear();
if (redis.pfmerge(dest_key, keys) == false)
{
printf("pfmerge failed: %s, dest: %s\r\n",
redis.result_error(), dest_key.c_str());
return false;
}
printf("pfmerge ok, dest: %s\r\n", dest_key.c_str());
redis.clear();
int ret = redis.pfcount(dest_key.c_str(), NULL);
printf("pfcont ok, count: %d, key: %s\r\n", ret, dest_key.c_str());
return true;
}
static void usage(const char* procname)
{
printf("usage: %s -h[help]\r\n"
"-s redis_addr[127.0.0.1:6379]\r\n"
"-n count\r\n"
"-C connect_timeout[default: 10]\r\n"
"-I rw_timeout[default: 10]\r\n"
"-S [if slice request, default: no]\r\n"
2015-08-26 20:45:40 +08:00
"-c [use cluster mode]\r\n"
"-a cmd[pfadd|pfcount|pfmerge]\r\n",
procname);
}
int main(int argc, char* argv[])
{
int ch, n = 1, conn_timeout = 10, rw_timeout = 10;
acl::string addr("127.0.0.1:6379"), cmd;
2015-08-26 20:45:40 +08:00
bool slice_req = false, cluster_mode = false;
2015-08-26 20:45:40 +08:00
while ((ch = getopt(argc, argv, "hs:n:C:I:a:Sc")) > 0)
{
switch (ch)
{
case 'h':
usage(argv[0]);
return 0;
case 's':
addr = optarg;
break;
case 'n':
n = atoi(optarg);
break;
case 'C':
conn_timeout = atoi(optarg);
break;
case 'I':
rw_timeout = atoi(optarg);
break;
case 'a':
cmd = optarg;
break;
case 'S':
slice_req = true;
break;
2015-08-26 20:45:40 +08:00
case 'c':
cluster_mode = true;
break;
default:
break;
}
}
acl::acl_cpp_init();
2015-08-26 20:45:40 +08:00
acl::redis_client_cluster cluster;
cluster.set(addr.c_str(), 100, conn_timeout, rw_timeout);
2015-08-26 20:45:40 +08:00
acl::redis_client client(addr.c_str(), conn_timeout, rw_timeout);
client.set_slice_request(slice_req);
2015-08-26 20:45:40 +08:00
acl::redis_hyperloglog redis;
if (cluster_mode)
redis.set_cluster(&cluster, 100);
else
redis.set_client(&client);
bool ret;
if (cmd == "pfadd")
ret = test_pfadd(redis, n);
else if (cmd == "pfcount")
ret = test_pfcount(redis, n);
else if (cmd == "pfmerge")
ret = test_pfmerge(redis, n);
else if (cmd == "all")
{
ret = test_pfadd(redis, n)
&& test_pfcount(redis, n)
&& test_pfmerge(redis, n);
}
else
{
printf("unknown cmd: %s\r\n", cmd.c_str());
ret = false;
}
printf("cmd: %s %s\r\n", cmd.c_str(), ret ? "ok" : "failed");
#ifdef WIN32
printf("enter any key to exit\r\n");
getchar();
#endif
return 0;
}