servicestack.redis Questions

8

Solved

I Installed Redis Server on ubuntu 16.04. but when I try to start the redis service using $ sudo systemctl start redis I receive message: Failed to start redis.service: Unit redis-server.service i...
Chromite asked 29/10, 2016 at 7:44

2

Solved

Redis 6 has introduced a feature supporting Client Side Caching and is described in here: https://redis.io/topics/client-side-caching I tried out the ServiceStack.Redis and StackExchange.Redis clie...
Morningglory asked 12/8, 2020 at 4:55

2

I used Only Redis as my DB, and my client is ServiceStack.Redis. The thing is, if two concurrent request need to update one key, then it can be a race condition. For example A: int a = Get key ...
Brisesoleil asked 14/2, 2015 at 8:44

2

I'm connecting to Azure Redis and they show me the number of open connections to my redis server. I've got the following c# code that encloses all my Redis sets and gets. Should this be leaking con...
Manlove asked 25/2, 2016 at 2:21

2

Solved

I am trying to use the sentinel to get the connection address of my master, the problem is that the sentinel sends the address only on failover, but if my master is down and the slave was promoted ...
Posture asked 23/3, 2015 at 12:17

3

Solved

I have used StackExchange.Redis for c# redis cache. cache.StringSet("Key1", CustomerObject); but I want to store data like cache.StringSet("Key1", ListOfCustomer); so that one key has all ...
Antaeus asked 12/8, 2015 at 4:21

2

Solved

I have a requirement for generating an counter which will be send to some api calls. My application is running on multiple node so some how I wanted to generate unique counter. I have tried followi...
Okinawa asked 19/1, 2016 at 8:15

1

Someone can explain the difference about ServiceStack.Redis and StackExchange.Redis c# libraries?
Toulouse asked 13/10, 2015 at 13:2

2

I'm using the ServiceStack Redis Client and I was hoping that I could get a clarification on what might cause the following error ... "Unable to Connect: sPort: 50071"? I'm using the "PooledRedisCl...
Unrequited asked 28/8, 2013 at 19:51

1

How can I format the below Redis connection string: Connection string: myIP,keepAlive=180,ConnectRetry=30,ConnectTimeout=5000 I started writing a unit test but keep getting a input string was not...
Siberia asked 11/3, 2015 at 16:26

1

Solved

I am trying to evaluate Redis by using two well known C# drivers ServiceStack and StackExchange. Unfortunately I cannot use ServiceStack because it's not free. Now I'm trying StackExchange. Does a...
Zohar asked 9/1, 2015 at 9:56

1

Solved

We are using Redis for Windows and ServiceStack as client library. We are getting the following memory issue from the Redis storage. It was able recover immediately but still this issue is causing ...
Shawana asked 17/12, 2014 at 17:34

1

Solved

I'm looking for a way to do a very simple TTL string in Redis: So how do I do the equivalent of the following in StackExchange.Redis? SETEX lolcat 10 "monorailcat" I found KeyExpire, but that m...
Blanc asked 10/8, 2014 at 14:11

3

Solved

Due to massive load increases on our website redis is now struggling with peak load because the redis server instance is reaching 100% CPU (on one of eight cores) resulting in time outs. We've upd...

1

Solved

I hate the questions that have "Not Enough Info". So I will try to give detailed information. And in this case it is code. Server: 64 bit of https://github.com/MSOpenTech/redis/tree/2.6/bin/relea...
Welkin asked 23/10, 2013 at 14:32

1

Solved

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", "V...
Daedalus asked 30/3, 2013 at 14:37
1

© 2022 - 2024 — McMap. All rights reserved.