Skip to content

Let's get started

Andrey Bulygin edited this page May 21, 2013 · 2 revisions

Home

  • 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