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