RedisBoost icon indicating copy to clipboard operation
RedisBoost copied to clipboard

.NET 4.0 thread-safe asynchronous Redis client. Supports pipelining, Redis channels, has built-in serializer and clients pool. Can be used along with async/await pattern.

Results 18 RedisBoost issues
Sort by recently updated
recently updated
newest added

When connecting to a server that requires authentication, the PrepareClientConnection method would throw an exception if the database index was greater than zero. Fixed by adding support for parsing password...

We have tracked down an issue which caused a deadlock with RedisBoost. Our test suite runs several concurrent tests, and some of the hash items requested are in the 100k...

Hi, I hope I am not missing something, but do you plan on supporting connection to password-protected servers?

Whenever there is a heavy load in the app, where we have a lot of call to Redis, the application in which we use "RedisBoost.ConnectAsync().Result" works quite well for some...

Is there way to set Connection Timeout value when we are connecting to Redis? Please help. Thanks in advance.

using (var redisClient = RedisClient.ConnectAsync( "data source=127.0.0.1:6379;initial catalog=1", new BasicRedisSerializer()).Result) { var setState = redisClient.HMSetAsync( "key.1", new MSetArgs[] { new MSetArgs("prop1", null), new MSetArgs("prop2", null), new MSetArgs("prop3", null) }).Result; var...

It may be already available in the api, but I wanted to check whether a client retrieved from pool is already authenticated. I'm doing the AuthAsync every time after getting...

This PR contains fixes for https://github.com/andrew-bn/RedisBoost/issues/21. This fix works fine on our production since 25 october 2017.

If i started a transaction block with MULTI statement and call, for example, SMEMBERS in subsquent command, after transaction execution (EXEC) in MultiBulk result i got incorrect result for corresponding...

Hi Andrew -- do you plan to support twemproxy. is this project still active?