redis Questions
4
Solved
I want an autocomplete feature. I have short descriptive strings on a
property of a data type. I have a list of ids in redis for the
datatype ordered by created date and I use the ids to set and ...
Canicula asked 19/6, 2011 at 7:41
1
After switching an ASP.NET MVC 5 application to Azure Redis (Microsoft.Web.RedisOutputCacheProvider Nuget package) I was surprised to see that OutputCacheAttribute when set to use either OutputCach...
Archeozoic asked 15/11, 2016 at 12:24
4
Solved
I have an application which inserts record to a postgresql table and after the insert, I want to send a PUBLISH command to redis. Is it possible to pass an object of that record to redis' PUBLISH c...
Logicize asked 4/3, 2011 at 7:25
5
Solved
This afternoon, I used python script to test the performance of Redis on Windows.
It worked normally when the number of threads was only 10, but some exceptions occured when the number of threads ...
Biancabiancha asked 7/4, 2011 at 14:4
1
Solved
Just loaded up a redis server for my backend with ioredis.
I'm learning that if i want to store data in json spec, i gotta use the redisJSON module instead. Since hashes are only string typed and t...
2
I tried to refer to documents but still I am not clear between difference between ttl an maxIdleTime in CacheConfig class in Redisson.
Can anyone shed some light please?
Abscind asked 19/12, 2017 at 23:19
0
I used to store and read pandas DataFrame to/from Redis using:
set:
redisConn.set("key", df.to_msgpack(compress='zlib'))
get:
pd.read_msgpack(redisConn.get("key"))
But to_msgp...
16
Solved
As you can see from the attached image, I've got a couple of workers that seem to be stuck. Those processes shouldn't take longer than a couple of seconds.
I'm not sure why they won't clear or h...
Respondent asked 14/9, 2011 at 12:28
6
Solved
I'm new to redis. I've followed this tutorial to use HttpSession with redis.
https://docs.spring.io/spring-session/docs/current/reference/html5/guides/boot.html
Now my application has 'Sign out f...
4
Solved
I am running redis-server inside a docker container. It is running on 127.0.0.1 port 6379.
In Container:
I am able to connect to the redis-server when within the container and process commands w...
Ainslie asked 28/5, 2018 at 5:59
0
My application uses AWSElastiCache for session storage. Created a redis instance (Cluster Mode Disabled) with 1 primary and 2 replica nodes. I am using Lettuce as Redis client which is internal to ...
Nadabb asked 2/6, 2021 at 19:6
1
I know there is a possibility to process each request via a JS script right inside the NGINX server.
I know there is the Lua Nginx module and the Lua Redis driver, and it's possible to write a sc...
Galleass asked 12/8, 2019 at 16:31
2
Solved
I am running a spring boot service using spring data redis and here is the following configuration.
The service seems to work but I am seeing a stream of Lost Sentinel messages in the logs. The se...
Philosophical asked 15/6, 2015 at 21:51
2
For our Node.js to Redis connections, we are using the Redis npm module.
Once in a while, we are getting the following error,
message: read ECONNRESET, stack: Error: read ECONNRESET
at exports._...
Glebe asked 28/12, 2017 at 5:27
2
Solved
Why can't get notified when a key expired with the following code?
I want to use redis, and when a key is expired then notify me. Then i can do something.
var Redis = require('ioredis')
var sub ...
2
Solved
What is the advantage and disadvantage of using redis as a sidecar in kubernetes?Is it possible to have persistence cache when redis container is added in each app pod? Will that affect the availab...
Onega asked 28/4, 2020 at 6:15
1
Solved
I'm using redis with nodejs. Version: "redis": "^3.1.2"
When my server connects to redis, I get the following error:
ERR wrong number of arguments for 'auth' command
I'm guessi...
Conall asked 20/5, 2021 at 3:16
2
Solved
I'm following this tutorial.
In my case I am operating in a Docker environment, and I have a secured site (i.e. https://localhost). which requires secured ssl communication.
I adjusted the web, a...
6
I am working in node.js. My app interacts with Redis via the node_redis module. I'm using mocha and sinon to automate testing of my app. My app looks something like this:
...snip
var redisClient =...
Rebane asked 24/7, 2014 at 14:56
2
Solved
Hi I need to do multiple insertions of the form
SADD key value
I have the key value pair and needed to know how to perform mass insertions using JAVA . I have written a file in the Redis Protoco...
2
Solved
What have I done:
Added Stable repo into my helm and installed a chart(eg.: Redis, RabbitMQ/someapp).
helm repo add stable https://kubernetes-charts.storage.googleapis.com/
helm install redis/rabb...
Preamble asked 6/2, 2020 at 4:57
16
Solved
Is there a Redis command for fetching all keys in the database? I have seen some python-redis libraries fetching them. But was wondering if it is possible from redis-client.
Zennie asked 9/3, 2011 at 21:0
1
I do not want to get a detailed comparison. Neither do I want to define 'what is the best or fastest' in-memory DB.
They are both similar, so I want to get an overview of critical differences.
So w...
0
I have a Heroku app that has a single process. I'm trying to change it so that it has several worker processes in a dedicated queue to handle incoming webhooks. To do so, I am using a Node.JS backe...
5
I need to design a Redis-driven scalable task scheduling system.
Requirements:
Multiple worker processes.
Many tasks, but long periods of idleness are possible.
Reasonable timing precision.
Mini...
Farrago asked 3/6, 2012 at 7:10
© 2022 - 2024 — McMap. All rights reserved.