Advertisement
Guest User

Untitled

a guest
Aug 25th, 2016
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. using System.Linq;
  2. using ServiceStack;
  3. using ServiceStack.Text;
  4. using ServiceStack.Redis;
  5.  
  6. var redisManagerPool = new RedisManagerPool("localhost:6379");
  7.  
  8. using(var client = redisManagerPool.GetClient())
  9. {
  10. client.Info.PrintDump();
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement