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