static bool test_exec(acl::redis_transaction& redis) { redis.clear(); if (redis.exec() == false) { printf("exec error\r\n"); return false; } printf("exec ok\r\n"); return true; }
static bool test_exec(acl::redis_transaction& option) { option.reset(); if (option.exec() == false) { printf("exec error\r\n"); return false; } printf("exec ok\r\n"); return true; }