Asynchronous I/O that doesn’t get in your way, written in D
The search functionality needs JavaScript enabled
Returns a handle to a set type value.
RedisSet!T getAsSet(T) ( RedisDatabase db, string key );
void test() { auto db = connectRedis("127.0.0.1").getDatabase(0); auto set = db.getAsSet("some_set"); set.insert("test"); }