redis Questions
0
Since the Heroku redis-to-go addon being shut down in August 2022, I'm wondering how to migrate my existing app on Heroku to use Heroku's own Heroku Redis addon instead.
I am using a hobby tier wit...
4
Solved
I have created an application to send e-mails to more than one user but I am facing a problem when dealing with a large number of recipients.
The error appears in a failed_jobs table
Illuminate\Que...
3
Solved
I can get one Key/Value from Redis with Python in this way:
import redis
r = redis.StrictRedis(host='localhost', port=6379, db=0)
data = r.get('12345')
How to get values from e.g. 2 keys at the ...
1
I have a Spring Cloud-based application running on multiple spring-boot servers. All servers share the same Spring Session using @EnableRedisHttpSession.
I now want to integrate a third party widg...
Algology asked 21/2, 2016 at 11:55
2
Solved
I'm using django with celery, celery beat, and redis to run periodic tasks.
The problem I'm having is that tasks registered in celery are received but not executed.
Also, the task stops in the midd...
Hausner asked 14/6, 2021 at 9:25
4
I have nodejs app which needs to connect to Redis database.
However, when trying to connect to Redis it always returns "false".
I have running Redis instance on the same machine which is accessible...
3
Solved
I am trying to understanding basics of Redis.
One that that keep coming everywhere is, Redis is single threaded that makes things atomic.But I am unable to imagine how this is working internally.I ...
Heeltap asked 28/7, 2017 at 3:11
0
We have an application that is using AWS MemoryDB for Redis. We have setup a cluster with one shard and two nodes. One of the nodes (named 0001-001) is a primary read/write while the other one is a...
Salvador asked 8/6, 2022 at 11:34
3
I'm trying to access AWS Elasticache cluster from a Lambda function using Serverless framework (v 0.5.6) without loosing access to Dynamodb. I have tried using this Gist with no luck. Inside the La...
Monophysite asked 4/10, 2016 at 14:17
2
Solved
Hi all and thanks for your time and your help.
I need a simple example for use socket.io-redis, with comments please.
I read the documentation, but I did not understand.
Thank you,
Stela asked 9/7, 2016 at 14:17
6
Solved
There is a post about a Redis command to get all available keys, but I would like to do it with Python.
Any way to do this?
4
log:Creating Server TCP listening socket (myip:port): bind: Cannot assign requested address
my redis.conf
bind 10.114.234.11
when i cofig like this
bind 127.0.0.1
it works well
Ola asked 23/12, 2014 at 13:36
2
I am facing, "Error: Socket already opened issue" when I am using Redis along with my node.js project.
I am trying to cache database results into Redis cache.. When Redis key is not empty...
Cristie asked 21/12, 2021 at 15:54
2
Solved
Prerequisites
In my local environment I am working with multiple tenants and Redis (Auth required).
To serve the project I am using Valet.
For this case I am addressing these two connections:
-...
Nitrogen asked 3/1, 2020 at 15:13
4
I am using redis as a caching store through phpredis. It works perfectly and I want to provide some fail-safe way to make sure the caching feature is always up (using file-based caching, for exampl...
3
I want to implement Distributed caching(Redis) in ASP.NET Core project. After a bit or research I found that there are two ways of creating a Redis connection using AddStackExchangeRedisCache in St...
Photoactinic asked 23/5, 2019 at 10:11
2
Solved
My rough understanding is that Redis is better if you need the in-memory key-value store feature, however I am not sure how that has anything to do with distributing tasks?
Does that mean we shoul...
2
I am using Spring Data Redis in order to cache some data using @Cacheable. I have multiple types of objects that need to be cached and I need the data from Redis to be in JSON format. I know that, ...
2
I have a master redis server (S1) and I have 6 other servers. I want them to have local redis slaves, so any change on the redis master will be replicated to the slaves on each local server
Can I ...
Overly asked 20/11, 2015 at 14:29
2
I am currently using serverless framework and setting up gitlab ci using shared runner.
Following is my gitlab-ci.yml:
image: node:latest
services:
- redis
cache:
paths:
- node_modules/
- j...
Imprison asked 25/10, 2017 at 9:1
2
I'm looking for the simplest way to log the redis activity originating from my java springboot microservice (queries and responses).
I want to see (in the main springboot log file) log lines when...
Bronk asked 28/11, 2017 at 16:47
2
Solved
I'm running Redis on my webserver (Debian/Nginx/Gunicorn) for session storage and have reasons to believe my Redis server is being hacked. It's definitely possible because if I run the command "red...
1
Solved
I am new to caching thing and learning some different solutions for my spring boot app. I was looking at Spring Cache and it is simple caching mechanism (that was what I look for) than I saw redis ...
Dorsy asked 2/5, 2022 at 21:2
6
I have 3 machines and create 6 nodes for redis cluster, i have created it successfully months ago, but it dropped now, i try my best to fix it, but it not work, so i clean all data and re-create it...
Downstate asked 19/9, 2016 at 8:27
2
Solved
I'm trying to connect golang and reds through Docker using docker-compose but I'm not having much luck. I have published my attempt at https://github.com/davidwilde/docker-compose-golang-redis/tree...
Breault asked 20/11, 2015 at 6:6
© 2022 - 2024 — McMap. All rights reserved.