https://github.com/huntlabs/dredis
Flexible and feature-complete Redis client for Dlang
https://github.com/huntlabs/dredis
client dlang redis redis-client redis-library
Last synced: 21 days ago
JSON representation
Flexible and feature-complete Redis client for Dlang
- Host: GitHub
- URL: https://github.com/huntlabs/dredis
- Owner: huntlabs
- Created: 2017-04-06T04:31:22.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2019-07-23T09:49:15.000Z (almost 7 years ago)
- Last Synced: 2025-04-25T11:50:42.158Z (about 1 year ago)
- Topics: client, dlang, redis, redis-client, redis-library
- Language: D
- Size: 746 KB
- Stars: 3
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# dredis
Flexible and feature-complete Redis client for Dlang
```d
import std.stdio;
import redis;
void main()
{
writeln("Edit source/app.d to start your project.");
auto redis = new Redis("10.1.11.168",6379,"123456");
redis.set("redie_User_31","password");
writeln(redis.get("redie_User_31"));
}
```