Questions tagged [booksleeve]

Booksleeve is a Redis client written in C# offering pipelined, asynchronous, multiplexed and thread-safe operations.

Booksleeve is a Redis client written in C# offering pipelined, asynchronous, multiplexed and thread-safe operations even for the busiest applications.

In March 2014, Stack Exchange switched from BookSleeve to the new StackExchange.Redis for multiple reasons listed here

Both BookSleeve and StackExchange.Redis were created by Marc Gravell - one of the members of the Stack Exchange team - to address specific performance goals by creating an asynchronous API to interface with Redis in .NET.

Further information about the inception and purpose of this project is available in this post from Marc's blog.

82 questions
0
votes
1 answer

Redis BookSleeve socket exhaustion

I'm receiving a SocketException when using BookSleeve to connect and add/get entries to/from my Redis server. The specific exception is: Only one usage of each socket address (protocol/network address/port) is normally permitted. The stack trace…
Adam Weber
  • 2,395
  • 21
  • 24
0
votes
0 answers

Redis Booksleeve GetConfig Concern

I'm using Redis MSOpenTech 2.6 with Booksleeve 1.3.38. Whenever I execute Dictionary config = conn.Server.GetConfig("save").Result; I get the following: save 900 0 300 0 60 0 which I know is incorrect, since I can read the .conf…
LandonC
  • 889
  • 1
  • 16
  • 28
0
votes
0 answers

How connect to multiple Redis servers, display combined results in optimized?

If I have same multiple Redis servers. How connect to multiple database servers, obtain those hashes from each Redis server and then display the first 10 of the combined results ? For better understanding, I am using the site StackOverflow and…
Amir Movahedi
  • 1,802
  • 3
  • 29
  • 52
0
votes
0 answers

BookSleeve ConnectionUtils with sentinel password

I'm looking for an example of ConnectionUtils being used with sentinels, connecting to a password protected instance of redis. I have the code working fine with just the sentinels, but I cannot find a syntax for providing a password. Does anyone…
CuriousLayman
  • 207
  • 1
  • 10
0
votes
1 answer

How to search content value in redis by BookSleeve

I want to search in content use redis ,Is such a thing possible؟ for example : class Post { public string Id { get; set; } public string Content { get; set; } public bool Deleted { get; set; } } I use c# and BookSleeve ,I…
Amir Movahedi
  • 1,802
  • 3
  • 29
  • 52
0
votes
0 answers

pub\sub between redis cache and in-memory cache

In my webpage I've created two kinds of cache: in memory cache, for every process. out-of-process cache. I used Redis (specifically Booksleeve). Now that I have those 2 built, I would like to form a communication between them. I would like that…
DanielY
  • 1,141
  • 30
  • 58
0
votes
2 answers

What is the proper way to deserialize a RedisMessage through BookSleeve?

I have created the following singleton class to handle a Redis connection, and expose BookSleeve functionality: public class RedisConnection { private static RedisConnection _instance = null; private BookSleeve.RedisSubscriberConnection…
ElHaix
  • 12,846
  • 27
  • 115
  • 203
1 2 3 4 5
6