Skip to content

Make a connection

Andrey Bulygin edited this page Jun 26, 2013 · 3 revisions

Home

  • Include RedisBoost namespace
  using 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