예제 #1
0
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;
}
예제 #2
0
파일: redis_trans.cpp 프로젝트: 2202877/acl
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;
}