getAsList

Returns a handle to a list type value.

getAsList
(
T = string
)

Examples

void test()
{
	auto db = connectRedis("127.0.0.1").getDatabase(0);
	auto list = db.getAsList!long("some_list");
	list.insertFront(123);
}

Meta