Tagged Questions
0
votes
0answers
26 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
48 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
53 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
0answers
48 views
chat client with redis in c# freezes. Anyone can suggest anything?
I am making a chat client based on ServiceStack and Redis in Winforms.
I create a message collection and as soon as I subscribe to it, my application freezes unresponsive. Am I maybe missing ...
0
votes
0answers
33 views
connecting to redis using serviceStack
HY
I am supossed to develop a chat winforms application that is using Redis as a backbone. How the hell am I suposswed to connect to redis using servicestack. I am googling for the last two days in ...
5
votes
1answer
166 views
Speeding up Redis on Windows / C#
Im experimenting with Redis on my local machine. So far i've got it working albeit very slowly.
Ive got an array of about 14,000 objects, and retrieving them is taking just over 3 seconds each time, ...
2
votes
1answer
44 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
165 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 ...
2
votes
1answer
77 views
How to store and retrieve value of enum with ServiceStack ICacheClient backed by Redis
I am using the ICacheClient and Redis to cache values in my app.
In one case, I need to cache the value of a enum.
The enum looks like this
public enum Status
{
OK,
Warn,
Error
}
I am ...
2
votes
0answers
49 views
ServiceStack.Redis ModelConfig Id error
I have a query regarding a null reference exception I am receiving when trying to configure a custom model as follows
ModelConfig<Video>.Id( m => m.RedisId );
This is in an MVC app and ...
1
vote
1answer
59 views
AppFabric DataCache GetValues by keys?
How can I use AppFabric DataCache and get values by keys?
eg. I want to do:
string[] keys = new []{"key1","key2", ...,"keyLast" }
object[] values = factory.GetCache("MyCache").Get(keys);
This ...
1
vote
2answers
76 views
Can 2 redis servers share the same snapshot dump file?
Is it possible to have a Redis server running on two machines and each server specifies in the config file the same snapshot dump file name and directory, with the directory and file obviously being ...
1
vote
1answer
120 views
Using ServiceStack ICacheClient with Redis and Ninject
I am using the ICacheClient from the servicestack library with Redis as a backend.
I am also using Ninject for DI.
I am trying to figure out in which scope to bind the PooledRedisClient manager.
I ...
2
votes
1answer
158 views
SignalR - Switch between different Redis backplanes
Let's assume we have 2 Redis Server Backplanes, one as Master and the other as Slave.
Each web application is using SignalR in order to push content to the connected clients as it happens and in ...
1
vote
1answer
57 views
GetEvalStr method not implemented ServiceStack.Redis RedisClient
I'm trying out the ServiceStack.Redis library for connecting to Redis and for some reason I cant create an instance of the RedisClient class, whenever I do...
RedisClient redisClient = new ...
3
votes
2answers
284 views
PooledRedisClientManager not releasing connections
I am storing lists of json data in redis and accessing it using the servicestack c# client. I am essentially managing my own foreign keys, where I store a zrange of ids and I use an interface ...
1
vote
1answer
241 views
ServiceStack.Redis store objects with timeout and retrieve by key
I'm trying to move from memcached to redis using the ServiceStack.Redis client. I would like to be able to simply check to see if the Redis cache has the items by key and if not add them with an ...
2
votes
1answer
171 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 ...
0
votes
1answer
77 views
Updating value in Redis with C#
I running the Windows server version of Redis and then have a little client application, and I cant find out how I update a value in a datatype I already have in the database
I have this Leader class ...
1
vote
0answers
269 views
ServiceStack Redis Client Bulk Insert using Pipelining
I have to insert ~80,000 rows into redis at one time and was looking into using redis pipelining to do so. However when testing on inserting only 1000 rows it is taking 46 seconds with pipelining vs 6 ...
1
vote
0answers
101 views
How to do search with Redis Client in ServiceStack?
With the Redis C# client from ServiceStack, is there a way to search for values inside the JSON objects that are stored?
For example, we have keys:
urn:comment:1, urn:comment:2 etc and the ...
1
vote
1answer
167 views
Redis client GetAll keys from a certain class
I have a redis with many keys (around 100), I want to select only Keys from type of ClassA (just an example).
Right now I am doing GetAllKeys, and then going in a foreach loop on all items and ...
3
votes
1answer
219 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
317 views
Performance of RedisClient.Get<T> C# with ServiceStack.Redis
public class MyEntity
{
public string Att1 { get; set; }
public DateTime Att2 { get; set; }
public KeyValuePair Att3 { get; set; }
public Dictionary Att4 { get; set; }
}
var list = ...
2
votes
2answers
301 views
Looking to optimize Redis memory usage for caching many JSON API results
I'm brand new to Redis, and am just experimenting with caching some data and seeing how memory usage/performance compares to other options like Memcached. I'm using ServiceStack.Redis client library ...
4
votes
1answer
348 views
Redis IOException: “Existing connection forcibly closed by remote host” using ServiceStack C# client
We have the following setup:
Redis 2.6 on Ubuntu Linux 12.04LTE on a RackspaceCloud 8GB instance with the following settings:
daemonize yes
pidfile /var/run/redis_6379.pid
port 6379
timeout 300
...
1
vote
2answers
311 views
Redis ServiceStack - Easy getting and setting of a group of values?
I'm storing dateTime info for devices based on a unique identifier:
redisClient.Set("lastDateTime:ID000011112222", DateTime.Now);
I'm storing other info like IP Address:
...
0
votes
0answers
113 views
Redis Unknown KeyType: None
So, I have a fairly basic understanding of Redis, but after some trial and error I setup a Redis server on my Win 7 64bit machine that actually does CRUD with C# (MVC4)
I have setup 3 basic classes ...
0
votes
0answers
93 views
Bad perfomance of mass insertion to Redis DB with Sider .NET client
I need to insert about one million key-value pairs in Redis DB. I have a Redis server instance on the same computer with my C# application. I use Sider client to connect to Redis. All settings are ...
3
votes
1answer
318 views
ServiceStack Redis C# slow retrieving data
I'm using Redis Servicestack in C#. Currently, the way I'm storing data is the following:
var listTypedRedis = db.As<MyObject>();
foreach (var obj in myObjects)
{
...
2
votes
1answer
112 views
SetEntryInHash vs. SetEntryInHashIfNotExists
I've read in a couple places that Redis is idempotent, so a repeated call to SetEntryInHash() will have no effect, right?
Is there any good case for using SetEntryInHashIfNotExists()? Can this give ...
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 ...
1
vote
1answer
272 views
ServiceStack Redis how to implement paging
I am trying to find out how to do paging in SS.Redis, I use:
var todos = RedisManager.ExecAs<Todo>(r => r.GetLatestFromRecentsList(skip,take));
it returns 0, but i am sure the database is ...
3
votes
1answer
209 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
142 views
Compress objects before saving to redis
I have just started looking at ss and redis. i am using microsoft redis implementation. with compression turned on, the dump.rdb is growing too fast.
I would like to save per second process stats. ...
1
vote
2answers
133 views
What are the possibilities of Using Redis with SQL Database in ASP.NET MVC [closed]
Redis as Main Database and as Cache. and how to implement it ?
What are other pros and cons of using this type of architecture.
2
votes
1answer
176 views
Why does the Redis cache client in ServiceStack return 0 instead of null for a non-existant key of an integer type?
I am using the ServiceStack Cache Client with Redis to cache integers.
I am calling the Get method on a key I know does not exist like this:
int? count;
count = cachClient.Get<int>(myKey);
...
3
votes
1answer
182 views
How to use ServiceStack CacheClient and Redis to increment or create counters
I am using ServiceStacks CacheClient and Redis libraries. I want to cache counts of the number of certain transactions that users perform. I am using the following to GET the cached value or create it ...
5
votes
1answer
487 views
ServiceStack Redis what is urn
What does "urn:" stand for?
I am playing with the ServiceStack Redis example. It seems like a naming convention, many keys in the db starting with "urn:".
By calling somePoco.CreateUrn(); --> ...
1
vote
1answer
197 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" ...
5
votes
2answers
967 views
Is there a Redis database viewer for windows?
I am looking for a Redis Management Studio for my testing team to see what is going on in my web apps Redis database.
Has anyone seen any decent options?
1
vote
0answers
217 views
Getting ServiceStack RedisStackOverflow example to work
Hi I am new to ServiceStack+Redis. Now I am looking at RedisStackOverflow example that comes with ServiceStack.
I get an error when I try to run it:
SocketException - An operation was attempted ...
1
vote
1answer
64 views
Use Redis Win64 port in PROD environment
I have been playing with Redis win64 port with ServiceStack.Redis client (in C#) since couple of weeks now, and it has admired me alot.
The significant gain in performance I have seen using Redis has ...
1
vote
1answer
129 views
Recursive objects causing stackoverflow on StackService.Redis client method Store()
I have two POCO classes (Account and Invoice) and as you can see (below are mockups of these classes) they are recursive.
When I pass in an invoice object with the account property set and then try ...
2
votes
1answer
168 views
Storing object with DateTime key in Redis
I want to store object in Redis where key is not integer Id but property of type DateTime. Is it possible? How to tell Redis which of the properties is key? Merely any property named 'Id'?
If I put ...
1
vote
1answer
132 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, ...
0
votes
1answer
102 views
Any (.NET) Redis SessionStore libraries?
I'm trying to search for a good library that uses Redis as a SessionStore for an upcoming WebAPI project. After searching, I've seen this github repo that kind of does that. Any other libraries ...
0
votes
1answer
108 views
Utilizing two Redis instances - Similar to Mongos
I have been reading that the proper way to scale Redis is to add a Separate instance (Even on the same machine is ok because CPU intensive). What I am wondering is if there are any existing ...
0
votes
0answers
209 views
How to get multiple value lists at once when using servicestack redis
The background:
A co-worker transformed a serverside hg pushlog with simply just the format [reponame timestamp creator hash] into a Redis store, with a bunch of keys (the reponames), and the values ...
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 ...

