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.
RedisZSet!T getAsZSet(T) ( RedisDatabase db, string key );
void test() { auto db = connectRedis("127.0.0.1").getDatabase(0); auto set = db.getAsZSet("some_sorted_set"); set.insert(1, "test"); }