Booksleeve is a Redis client written in C# offering pipelined, asynchronous, multiplexed and thread-safe operations.
0
votes
0answers
41 views
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 ...
1
vote
1answer
54 views
Task cancelled error when using redis cache in c#
I build an out-of-process cache for my webpage's database. Though when I try to do something with it (Set, Get), I get the following error:
A task was canceled
Here's my redis cache code. any help ...
2
votes
1answer
90 views
implementing out-of-process cache using Redis in windows azure
I've been working on a webpage that displays a table from a database I have in my azure cloud.
In order to reduce calls to the DB directly for performance improvement I would like to build a cache for ...
1
vote
1answer
50 views
Best way to serialize a byte array key to Redis with Booksleeve
I need to find the best implementation to send a byte array to the key space of a Redis Server with Booksleeve.
I tried different implementation like UTF8 Encoding but i don't know what is the most ...
1
vote
2answers
101 views
Booksleeve Redis development guide
Is there an article or resource on getting started with BookSleeve Redis? Thanks
2
votes
1answer
46 views
Booksleeve, error thrown when trying to open connection after connection was closed
I cannot re-connect to my Redis DB doing the following:
Create a new RedisConnection called "connection"
Open the connection connection.Open().Wait();
Close the connection connection.Close(true);
...
1
vote
1answer
179 views
How does PubSub work in BookSleeve/ Redis?
I wonder what the best way is to publish and subscribe to channels using BookSleeve. I currently implement several static methods (see below) that let me publish content to a specific channel with the ...
1
vote
1answer
65 views
Booksleeve closing connection prematurely?
I am having difficulty with the 1.1.0.5 version of Booksleeve in VS2010 working the way I intend to use it. What's happening is after perform and wait for an operation, Booksleeve sometimes leaves ...
2
votes
2answers
96 views
Is there a C# implementation of Redis-rdb-tools?
Taking a look at Redis-RDB-Tools, it looks like there are some useful functions for monitoring the health of your Redis server.
ServiceStack.Redis seems to have a good set of client functions (but ...
1
vote
1answer
99 views
The proper way to retrieve a sorted set from Redis using BookSleeve
As per some suggestions, I am using Redis' ZADD through BookSleeve's SortedSets.Add() to save data in a chronological order as follows:
TimeSpan span = DateTime.UtcNow.Subtract(new DateTime(1970, 1, ...
0
votes
2answers
92 views
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;
...
4
votes
0answers
422 views
Using SignalR with Redis messagebus failover using BookSleeve's ConnectionUtils.Connect() - assist with steps to success?
I am trying to create a Redis message bus failover scenario with a SignalR app.
At first, we tried a simple hardware load-balancer failover, that simply monitored two Redis servers. The SignalR ...
2
votes
2answers
226 views
Saving a collection of objects with BookSleeve
I am new to both Redis and BookSleeve. I am evaluating whether I should use BookSleeve or ServiceStack.Redis.
ServiceStack seems much more staightforward but I like the idea of pipelining provided ...
2
votes
1answer
174 views
How to save and retrieve channel data from Redis (pub/sub) with date ranges?
Initially I asked about querying .rdb files which is not what I want to do - I will be querying an active server.
I am about to start a project where we will use Redis in a pub/sub scenario, using ...
3
votes
1answer
279 views
Can someone explain exactly how Booksleeve and Redis work together and it's application in a SignalR app?
We are implementing scale-out for our SignalR app and trying to avoid a single point of failure in our cluster. Thus, more than one Redis message bus server is required.
The problem with ...
3
votes
1answer
220 views
Redis transactions in Booksleve
The 3 commands below work perfectly when they are executed as is.
using (var redis = NewRedisConnection)
{
await redis.Open();
var allKeys = await redis.Keys.Find(db, "searchPattern");
...
1
vote
1answer
104 views
Options for performing ZINTERSTORE with Booksleeve?
I've been using Booksleeve as my redis driver in C# and have been quite happy with it - but I have come across the need to do some work with sorted sets. It appears that these only have minimal ...
3
votes
1answer
212 views
Connecting to Redis from Azure throwing Intermittent Exceptions
I have a Windows Azure Server running my C# application. It is distributed on 4 medium instances and I am using Redis for my L2 caching. The application is handling a pretty decent amount of traffic ...
0
votes
1answer
99 views
How can i send random commands to redis?
I am using redis via booksleeve on c#/.NET
Lets say i want to send an unimplemented command like SCRIPT FLUSH or EVAL. How do i do so with booksleeve? Also i'm not sure if echo is implemented so ...
1
vote
1answer
133 views
Redis: How do i INCR and insert?
I have the CLI open and a .NET dummy solution open. I would like to create a user and insert some data in one go. How in the CLI/REPL i wrote this
redis 127.0.0.1:6379> incr userCount
(integer) 1
...
1
vote
1answer
199 views
Booksleve: what Redis version to use?
With reference to this post about Booksleeve and to the fact that there is not an official Windows Redis distribuition, what is the best practice? Is better to compile on Win32 or the "Unofficial" ...
2
votes
1answer
232 views
Check-and-Set (CAS) operations with Booksleeve and Redis
Does Booksleeve support CAS operations (i.e. the Redis WATCH command)? For example, how would one implement something like the following?
WATCH mykey
val = GET mykey
val = val + 1
MULTI
SET mykey ...
1
vote
1answer
136 views
Should null strings on Booksleeve redis client cause timeouts?
So I have this unit test:
[TestMethod]
public void TestNullString()
{
String expectedTestValue = null;
var uid = Guid.NewGuid().ToString();
redis.Wait(redis.Strings.Set(db, uid, ...
1
vote
1answer
124 views
How do I return a C# bitarray from Redis with Booksleeve
I may be approaching this all wrong, but I would like to use a REDIS bitmap to track activity within my application. I have a piece of code like the following:
using (var conn = new ...
3
votes
2answers
613 views
Redis connection errors when using Booksleeve Redis client in Azure VM
I've recently started hosting a side project of mine on the new Azure VMs. The app uses Redis as an in-memory cache. Everything was working fine in my local environment but now that I've moved the ...
1
vote
1answer
330 views
Booksleeve - Setting multiple Hash Values and retrieve them at once
I'm trying to set multiple fields of a hash independently and retrieve them all at once later on. Is the code below supposed to work or am doing something wrong here? When I run it locally against ...
2
votes
1answer
836 views
Redis Booksleeve - How to use Hash API properly
i am using the Booksleeve hash api for Redis. I am doing the following:
CurrentConnection.Hashes.Set(0, "item:1", "priority", task.priority.ToString());
var taskResult = ...
1
vote
1answer
222 views
Redis on Appharbor - Booksleeve GetString exception
i am trying to setup Redis on appharbor. I have followed their instructions and again i have an issue with the Booksleeve API. Here is the code i am using to make it work initially:
...
1
vote
2answers
444 views
Basic Booksleeve plus Protobuf-net plus Lists/SortedSets, implementations?
I have some fairly basic questions regarding the use of booksleeve in conjunction with protobuf-net. Now I have implemented a singleton class to manage the connections so I am reusing the same ...
3
votes
1answer
988 views
Maintaining an open Redis PubSub subscription with Booksleeve
I am using a Redis pubsub channel to send messages from a pool of worker processes to my ASP.NET application. When a message is received, my application forwards the message to a client's browser with ...
1
vote
1answer
437 views
How to use a singleton for storing the RedisConnection with Booksleeve?
I'm using Booksleeve 1.1.0.6 (the latest nuget package).
I want so use a single connection for my whole Web Application so I'm storing it in a singleton:
public static RedisConnection Conn = ...
0
votes
1answer
477 views
What is the proper way to retrieve string key/values from Redis using BookSleeve
I'm new to BookSleeve and it seems that the API has changed even when compared to what is documented in the website.
AS it is noted in the website:
"Note the API may change a little going to 1.0, ...
0
votes
1answer
320 views
Using Redis via BookSleeve. Unknown parameter
I'm trying to use redis via C#. For this I selected BookSleeve. But I'm interested that most of the methods (reading/writing) need a parameter: int db. The description of this parameter is "The ...
15
votes
3answers
2k views
Maintaining an open Redis connection using BookSleeve
Does anyone have a solid pattern fetching Redis via BookSleeve library?
I mean:
BookSleeve's author @MarcGravell recommends not to open & close the connection every time, but rather maintain one ...
5
votes
3answers
1k views
How do I implement Redis pipelined requests with Booksleeve?
I'm a bit mixed up about the difference between a Redis transaction and pipeline and ultimately how to use pipelines with Booksleeve. I see that Booksleeve has support for the Redis transaction ...
29
votes
3answers
3k views
Redis backed ASP.NET SessionState provider [closed]
I'm currently developing an ASP.NET SessionState custom provider that is backed by Redis using Booksleeve. Redis seemed like a perfect fit for SessionState (if you must use it) because:
Redis can ...
12
votes
3answers
1k views
How often should I open/close my Booksleeve connection?
I'm using the Booksleeve library in a C#/ASP.NET 4 application. Currently the RedisConnection object is a static object across my MonoLink class. Should I be keeping this connection open, or should ...
1
vote
1answer
368 views
BookSleeve Wait() timeout in Razor page while benchmarking
I'm just beginning to mess around with BookSleeve (and redis) on Windows and just wanted to see if I could get some direction on what I may be doing wrong here. Using the following code, and then ...
2
votes
1answer
1k views
How should i be using Booksleeve with protobuf-net?
I use the RedisConnection Set method to set the byte array but how do i get the data? The get returns a wrapped byte array?
Links:
http://code.google.com/p/booksleeve/
...