tagged [servicestack.redis]
AddItemToSet vs StoreRelatedEntities
AddItemToSet vs StoreRelatedEntities I am trying to understand when someone would use AddItemToSet vs StoreRelatedEntities. It seems the former is a way to associate a set label with a string-based it...
- Modified
- 9 Sep at 20:9
How to set TTL to List Values in ServiceStack.Redis?
How to set TTL to List Values in ServiceStack.Redis? I Have a List in ServiceStack.Redis that I want to set a TimeSpan to expire it. In the other word, how to call the following redis command in Servi...
- Modified
- 3 Aug at 07:5
Is there TypedClient support in StackExchange.Redis C# client?
Is there TypedClient support in StackExchange.Redis C# client? I'm comparing capabilities of ServiceStack.Redis and StackExchange.Redis clients. I thought that it might be very useful to use `IRedisTy...
- Modified
- 2 Feb at 16:13
servicestack.redis can not visit sentinel
servicestack.redis can not visit sentinel How is the sentry's password accessed?Why can't I visit my sentinel? I've tested my sentinels are accessible from the command line. I have changed the account...
- Modified
- 14 Aug at 14:14
Method does not have implementation in servicestack redis
Method does not have implementation in servicestack redis I'm getting the following message after upgrade to new version of Servicestack.redis (our code dosen't call directly to redis native client) M...
- Modified
- 6 Nov at 15:36
ServiceStack.redis configuration on VS 2008
ServiceStack.redis configuration on VS 2008 I am working on a project(WebAPI) where i have to pick data from azure redis cache and i am using visual studio 2008 due to some constraints. How can i conf...
- Modified
- 28 Feb at 09:9
Can StackExchange.Redis be used to store POCO?
Can StackExchange.Redis be used to store POCO? I am trying to evaluate Redis by using two well known C# drivers [ServiceStack](https://github.com/ServiceStack/ServiceStack.Redis) and [StackExchange](h...
- Modified
- 9 Jan at 10:27
regist servicestack without permission?
regist servicestack without permission? i can regist servicestack register service like ``` var responseX = client.Post(new Register { UserName = sicil.Text, ...
- Modified
- 10 Dec at 13:7
Keep copy of original request in Servicestack Redis outq
Keep copy of original request in Servicestack Redis outq I realise outq is used to see the last 100 or so responses for processed messages. However, the objects stored in outq only seem to have the re...
- Modified
- 25 May at 07:46
How to store list element in Redis cache
How to store list element in Redis cache I have used `StackExchange.Redis` for c# redis cache. but I want to store data like > so that one key has all Customer List stored and it is easy to search,gr...
- Modified
- 12 Aug at 05:38
Referencing netstandard ServiceStact.redis in net48
Referencing netstandard ServiceStact.redis in net48 We have a net48 project which is referencing a netstandard2.0 lib, which is in turn referencing ServiceStack.Redis. This works fine in all our netco...
- Modified
- 22 May at 15:56
Redis Client Side Caching for .Net
Redis Client Side Caching for .Net Redis 6 has introduced a feature supporting Client Side Caching and is described in here: [https://redis.io/topics/client-side-caching](https://redis.io/topics/clien...
- Modified
- 18 Aug at 04:40
Servicestack.Redis PooledClient()
Servicestack.Redis PooledClient() ``` public class TransporterServicesAppHost : AppHostBase { public TransporterServicesAppHost() : base("TServices", typeof(OTService).Assembly) { } public overrid...
- Modified
- 14 May at 22:50
Redis client for C# (serviceStack) - where is the documentation?
Redis client for C# (serviceStack) - where is the documentation? The old version of [redis client for c#](https://www.nuget.org/packages/ServiceStack.Redis/) were using commands like : `redisClient.Ge...
- Modified
- 6 May at 06:10
ServiceStack Redis Client GetValues when value is not present and is a value type
ServiceStack Redis Client GetValues when value is not present and is a value type Running `ServiceStack.Redis.IRedisClient.GetValues`, when any key is missing, I cannot map the values returned to keys...
- Modified
- 7 Mar at 19:2
How to set value with NX option and expire using ServiceStack.Redis?
How to set value with NX option and expire using ServiceStack.Redis? I'm using ServiceStack.Redis to execute commands on REDIS. I would like to simply set value with expire and NX option (which is : s...
- Modified
- 4 Feb at 11:53
ServiceStack.Redis.RedisResponseException: unknown command 'SCAN'
ServiceStack.Redis.RedisResponseException: unknown command 'SCAN' I registered my RedisClient in my ServiceStack app host as follows however, in my Service when I call i
- Modified
- 3 Aug at 09:45
How to format ServiceStack Redis connection string
How to format ServiceStack Redis connection string How can I format the below Redis connection string: Connection string: myIP,keepAlive=180,ConnectRetry=30,ConnectTimeout=5000 I started writing a uni...
- Modified
- 11 Mar at 17:29
How to specify "namespace" and "conformsto" attribute to APIs for services developed using ServiceStack?
How to specify "namespace" and "conformsto" attribute to APIs for services developed using ServiceStack? We are currently in process of converting our legacy web services (asmx) into REST APIs layer d...
- Modified
- 23 Mar at 05:23
Is it possible to use a custom URN prefix in Redis?
Is it possible to use a custom URN prefix in Redis? Is it possible to use a custom URN prefix in Redis? I'm trying to find a way to delineate the data in each of our frameworks within a single Redis i...
- Modified
- 14 Feb at 16:10
Redis on windows throwing error : READONLY You can't write against a read only slave., sPort: xxxxx , LastCommand:
Redis on windows throwing error : READONLY You can't write against a read only slave., sPort: xxxxx , LastCommand: I am getting this error on my production server, local server it is working fine. It ...
- Modified
- 15 Feb at 10:15
ServiceStack.Redis: Query a subset of objects by object properties stored using redisClient.StoreAll()
ServiceStack.Redis: Query a subset of objects by object properties stored using redisClient.StoreAll() I have list of POCO objects (~80k). I have tried different ways to store these objects in Redis. ...
- Modified
- 26 Jun at 03:36
Is ServiceStack.Redis 3.9.71 compatible with Redis 2.8.X?
Is ServiceStack.Redis 3.9.71 compatible with Redis 2.8.X? 3.9.71 is the latest BSD versionned version of ServiceStack.Redis. But Redis goes on with BSD licenses. There are merge required changes for r...
- Modified
- 16 Jan at 22:52
ServiceStack Pub/Sub via Api
ServiceStack Pub/Sub via Api Is it possible to set up a pubsub via an api? I'm planning on using redis, but I don't want to expose it to the WWW (a security concern). I'd like to have subscribers come...
- Modified
- 14 Mar at 09:31
Redis - query by more than key
Redis - query by more than key I use redis to store user sessions by a guid i generate when the log in. I use that as the key in their session object. If i was to lock a user's account I currently hav...
- Modified
- 7 Feb at 07:30