Returns a handle to a list type value.
void test() { auto db = connectRedis("127.0.0.1").getDatabase(0); auto list = db.getAsList!long("some_list"); list.insertFront(123); }
See Implementation
Returns a handle to a list type value.