getAsHash

Returns a handle to a hash type value.

getAsHash
(
T = string
)

Examples

void test()
{
	auto db = connectRedis("127.0.0.1").getDatabase(0);
	auto hash = db.getAsHash("some_hash");
	hash["test"] = "123";
}

Meta