redis Questions

2

While doing testing with Jest I am getting a warning saying "A worker process has failed to exit gracefully and has been force exited. This is likely caused by tests leaking due to improper te...
Shawntashawwal asked 8/4, 2021 at 4:18

14

Solved

I want to build my PHP-FPM image with php-redis extension based on the official PHP Docker image, for example, using this Dockerfile: php:5.6-fpm. The docs say that I can install extensions this wa...
Disentomb asked 12/7, 2015 at 16:15

9

Solved

I am developing an application where chats has to cached and monitored, currently it is an local application where i have installed redis and redis-cli. The problem i'm facing is (node:5368) Unhand...
Comprehensive asked 1/12, 2021 at 13:52

6

Solved

I have my config file at: root/config/redis.rb I start redis like this: redis-server How do I start redis so that it uses my config file? Also, I hate mucking about with ps -grep to try and fin...
Odyssey asked 6/5, 2014 at 13:47

4

Solved

I am using Redis server of Windows version 3.2.x (MSOpenTech Redis 3.2 Release Notes). I am developing Spring Boot + Spring Data Redis example and I am continuously getting the below error. java.la...
Knowhow asked 13/11, 2018 at 18:16

2

I'm running my redis server on a docker container hosted on my local windows machine, but i am unable to store data because of this warning WARNING Memory overcommit must be enabled! Without it, a ...
Anethole asked 3/8, 2023 at 18:42

9

Solved

I have installed Django-Channels but while running the daphne-server I am getting this error given below: File "/usr/local/lib/python2.7/dist-packages/channels/asgi.py", line 36, in make_backend "...
Kirovabad asked 20/5, 2016 at 9:8

21

I working with node.js by expressjs I try to store an account to session. So, i try to test to use session with code in expressjs var RedisStore = require('connect-redis')(express); app.use(expres...
Eason asked 6/1, 2012 at 6:40

15

Solved

# I have the dictionary my_dict my_dict = { 'var1' : 5 'var2' : 9 } r = redis.StrictRedis() How would I store my_dict and retrieve it with redis. For example, the following code does not work. ...
Baca asked 28/8, 2015 at 17:18

3

Solved

Here are the pros and cons of using redis. Pros Fast transaction (because single threaded) Cons No secondary key support No reindexing support No reliable change streams unlike mongodb, dyn...
Misusage asked 2/12, 2019 at 9:53

3

Hello I am newbie to Redis. I am trying to use Redis as my primary database instead of sqlite as provided by default with Rails. I tried enough googling but could not find relevant stuff. How to ac...
Ozonosphere asked 19/4, 2017 at 5:11

2

Solved

I'm installing redis, everytime I run this command sudo apt install redis-server I got an unrecoverable fatal error I already tried many solutions to completly remove redis, redis-server, but noth...
Trinidadtrinitarian asked 20/5, 2019 at 15:54

2

In my project , I've created a simple pub/sub topic with radisson (https://github.com/redisson/redisson) . Publisher will publish some message and there will be multiple subscribers running on diff...
Strip asked 30/4, 2019 at 14:1

4

Solved

when I upgrade the jedis to version 4.2.3 in gradle.build: api "redis.clients:jedis:4.2.3" show error: /Users/xiaoqiangjiang/source/reddwarf/backend/retire/dolphin-common/src/main/java/...
Karlene asked 10/5, 2022 at 13:58

1

Solved

The official redis documentation for dotnet recommends the package NRedisStack in the installation guide, and the NRedisStack docs says the following: This project builds on StackExchange.Redis B...
Void asked 1/2 at 2:1

8

Solved

I'm trying to access Redis server through the code and it's not connecting. But if i bash to the redis container i can access the redis-cli. docker-compose.yml looks like this version: '2' servic...
Bairam asked 21/2, 2017 at 6:40

4

Solved

A number of sources, including the official Redis documentation, note that using the KEYS command is a bad idea in production environments due to possible blocking. If the approximate size of the d...
Drachma asked 16/9, 2015 at 8:57

8

Solved

Hi I am using Laravel with Redis .When I am trying to access a key by get method then get following error "WRONGTYPE Operation against a key holding the wrong kind of value" I am using following c...
Picco asked 21/6, 2016 at 19:28

4

Solved

I have two keys(geo zset) in redis first "DRIVERS" second "ORDERS" and members inside them. Is it possible to calculate distance between member in DRIVERS and member inside ORDERS? Manual https://r...
Valene asked 9/8, 2017 at 10:34

6

is it possible to use redis's MOVE command to move all keys from 1 database to another? The move command only moves 1 key, but I need to move all the keys in the database.
Saboteur asked 26/3, 2011 at 10:43

3

I have installed Redis on my Mac and now I am trying to access Redis config file redis.conf. Where is it located in macOS? I have tried looking at various resources, but could not find any helpful ...
Klan asked 1/1, 2023 at 16:8

14

I need to expire all keys in redis hash, which are older than 1 month.
Pussyfoot asked 14/5, 2013 at 14:3

3

Solved

I am trying to follow this Redis documentation link to create a small DB of notable people searchable in real time (using Python client). I tried a similar code, but the final line, which queries b...
Massif asked 26/12, 2023 at 11:33

18

I know that in order to get all the list of all keys in Redis, I have to use KEYS *, but is there a way to output all keys together with their values? Few minutes of searching did not yield any re...
Balinese asked 14/10, 2013 at 6:48

3

Solved

I have an operation I need to get done N times and no more. The operation is done by many possibly parallel processes that recieve requests. A process has to check if the counter has exceeded N and...
Primeval asked 5/7, 2019 at 8:33

© 2022 - 2024 — McMap. All rights reserved.