Skip to content

Make a connection

Andrey Bulygin edited this page May 21, 2013 · 3 revisions
  • Include RedisBoost namespace
  using NBoosters.RedisBoost;
  • Make a connection to Redis.
  IRedisClient client = await RedisClient.ConnectAsync("127.0.0.1", 6379);
  • Now you can use IRedisClient to get an access to Redis api. To find out more about Redis visit http://redis.io/
Clone this wiki locally