1
vote
1answer
37 views

ServiceStack Redis CRUD

First time using ServiceStack Redis. I looked around the web and could not find a very basic crud example. Closest I found was this and this. Just wondering If I'm doing it right. Thanks. Note : ...
1
vote
1answer
46 views

How do I get started with Redis on Servicestack on Windows?

I've just got started with ServiceStack and have created my first service in MVC4. Now I want to persist my objects using Redis. I can't figure out how to get it running on Windows or if the ...
1
vote
0answers
47 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
31 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 ...
1
vote
1answer
79 views

Servicestack.redis Transactions and Hashes

How can I get all the entries from a hash while in a transaction? I don't see an onSuccessCallback with the right type. I tried mapping it as a byte[][] thinking I could just manually deserialize it, ...
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, ...
1
vote
1answer
153 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 ...
3
votes
1answer
137 views

How do I use ServiceStack.Redis message queue to send email notifications?

I am digging into the messaging capabilities of the ServiceStack.Redis client and trying to make sense of things. My initial usage would be to queue up notification messages and then process those ...
3
votes
1answer
190 views

Lua in Redis from JSON

I have a list of JSON strings stored in Redis that looks something like this: [ { "ID": 25, "DomainID": 23455, "Name": "Stuff", "Value": 23 }, { "ID": 35, "DomainID": 23455, "Name": "Stuff", ...
2
votes
1answer
128 views

SignalR.Redis and ServiceStack.Redis in the same web app

I am using SignalR.Redis and ServiceStack.Redis in my web application. I noticed that SignalR.Redis uses the Booksleeve redis client and of course ServiceStack.Redis has its own client code. Is it ...
2
votes
1answer
74 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 ...
1
vote
2answers
107 views

servicestack - caching a service response using redis

I have a servicestack service which when called via the browser (restful) Url ex:http://localhost:1616/myproducts, it works fine. The service method has RedisCaching enabled. So first time it hits ...
2
votes
0answers
46 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
33 views

Is there a way to conume Redis MONITOR data in ServiceStack Redis?

Does ServiceStack.Redis have the ability to call the Redis Monitor command and consume it's data, similiar to node-redis client?: var client = require("redis").createClient(), util = ...
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 ...
1
vote
0answers
67 views

Servicestack REDIS CacheClient failing with password

I am moving a system towards production, part of this has involved changing the REDIS server used for authentication caching, from a service running on a dev box to a more suitable environment. The ...
2
votes
2answers
93 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
55 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
3answers
129 views

Acquiring Locks when updating a Redis key/value

I'm using AcquireLock method from ServiceStack Redis when updating and getting the key/value like this: public virtual void Set(string key, T entity) { using (var client = ...
3
votes
2answers
274 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
238 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 ...
1
vote
2answers
118 views

Block access to Redis key (ServiceStack)

I'm trying to implement what I would think is a very common caching scenario using the ServiceStack Redis client, yet I'm having difficulty finding a good example of this. In an ASP.NET MVC app, we ...
2
votes
1answer
275 views

ServiceStack.Redis usage best practices

We have a system that makes about 5000 requests per second to Redis cache. We have been looking for best practices to use ServicStack.Redis client in such scenarios. Most of our calls are for ...
1
vote
0answers
266 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
1answer
79 views

How can I go about customizing the serialization with ServiceStack Redis impl

What is the easiest way to go about providing custom serialization for the ServiceStack redis library, https://github.com/ServiceStack/ServiceStack.Redis I have done some digging on google but with ...
1
vote
0answers
98 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 ...
3
votes
1answer
148 views

Does Redis provide Expiration and an Expiration callback?

I'm starting a green field project. In it, we would like to have a QUEUE that has expiries. So I add an key and that item expires in .. say .. 20 mins. The queue is expected to be pretty large. 10's ...
2
votes
0answers
43 views

What is the purpose of the out queue in RedisMQ?

In the Re-usability use-case project with RedisMQ there is a SMessageService which has the following handler. SMessageService :Service{ public object Any(EmailMessage request) { var ...
1
vote
1answer
77 views

First subscriber not called with Redis MQ

I am using the solution from the ServiceStack Re-usability use case project. To this solution I have added a new console app which contains the code below. With the original Re-usability use-case ...
3
votes
1answer
170 views

How to set up handlers in RedMQ from events raised in my domain

Just getting my head around message queues and Redis MQ, excellent framework. I understand that you have to use .RegisterHandler(...) to determine which handler will process the type of message/event ...
3
votes
0answers
94 views

How to resend from Dead Letter Queue using Redis MQ?

Just spent my first few hours looking at Redis and Redis MQ. Slowly getting the hang of Redis and was wondering how you could resend a message that is in a dead letter queue? Also, where are the ...
1
vote
3answers
337 views

CQRS using Redis MQ

I have been working on a CQRS project (my first) for over the last 9 months which has been a heavy learning curve. I am currently using JOliver's excellent EventStore in my write model and using ...
1
vote
1answer
67 views

Get the sum of column entries in Redis

How can we get the sum of column entries in the NO-SQL database Redis? I mean similar as : Select sum(salary) from Account;
1
vote
1answer
90 views

How can I get Multiple HashSet with ServiceStack Redis Client

I want to get Multiple HashSet. There is public HashSet<string> GetAllItemsFromSet (string setId){ ....} I need public HashSet<string>[] GetAllItemsFromSets (string[] setIds) How?
1
vote
0answers
57 views

How can I get last redis error

I tried to implement Truncate extension for ServiceStack Redis client.. public void Truncate<T>() { using (var r = RedisManager.GetClient().As<T>()) { ...
2
votes
0answers
56 views

Transparent Redis Dal with serviceStack Redis

Yeap I'm here with another weird question:) I try to implement transparent Redis Data Access Layer. I will load N*1 and 1*1 relations Eagerly, N*N and 1*N relations Lazily. public class User { ...
1
vote
1answer
166 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 ...
1
vote
1answer
66 views

IRedisClient not disposed after using

I am using an ServiceStack IRedis client as follows public static IRedisList<MyType> getList(string listkey) { using(var redis = new RedisClient()) { var client = ...
2
votes
1answer
146 views

ServiceStack MessageFactory publishing

I have been reviewing the ServiceStack Messaging with Redis documentation here: https://github.com/ServiceStack/ServiceStack/wiki/Messaging-and-redis It seems to explain the basics very well. What ...
1
vote
1answer
315 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 = ...
1
vote
1answer
53 views

Where's the TYPE command in ServiceStack.Redis?

I'm using ServiceStack.Redis.IRedisNativeClient but this interface doesn't include the TYPE command. Why? How can I access this functionality?
2
votes
2answers
298 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 ...
2
votes
1answer
54 views

My servicestack cached service includes extra slashes in the response

I have created a cached webservice using ServiceStack. public class ContentSearchService : ServiceBase<ContentSearch> { public ICacheClient CacheClient { get; set; } protected override ...
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
307 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: ...
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
110 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 ...
3
votes
0answers
167 views

ServiceStack RedisMqHost with partitioned message queues

I'm implementing a solution whereby a number of nodes listen on a number of Redis message queues implemented using ServiceStack.Redis. Within the system each node services a specific "channel" and a ...
1
vote
1answer
271 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 ...
1
vote
0answers
66 views

"Method 'Expire' in type 'ServiceStack.Redis.RedisNativeClient' from assembly

I get the following error when I try to load my webrole locally. Method 'Expire' in type 'ServiceStack.Redis.RedisNativeClient' from assembly 'ServiceStack.Redis, Version=3.9.14.0, Culture=neutral, ...

1 2