Questions tagged [redis-server]

Redis is an open source, BSD licensed, advanced key-value store. It is often referred to as a data structure server since keys can contain strings, hashes, lists, sets and sorted sets.

Redis is an open source, BSD licensed, advanced key-value store. It is often referred to as a data structure server since keys can contain strings, hashes, lists, sets and sorted sets.

http://redis.io/

126 questions
2
votes
3 answers

Configure Redis Cluster in Ubuntu Server 14.04

I've installed redis-server using apt-get install redis-server and everything went fine. Right now I'm trying to configure it in a Cluster mode. The problem is that in the tutorial supplied here http://redis.io/topics/cluster-tutorial they use a…
Alexandru
  • 833
  • 1
  • 8
  • 24
1
vote
1 answer

Set and Get to redis stack server from apache nifi

Actually, I can work fine with Redis in Apache Nifi. But I can't find any reference or documentation of working with Redis Stack and RedisJSON. I've tried to use the current solution that worked with Redis, to use with Redis Stack, but it doesn't…
Mohammadreza Khedri
  • 2,523
  • 1
  • 11
  • 22
1
vote
1 answer

How to start and stop redis server in python efficiently?

I need to start redis server in my UT(Unit test) code which is written in python and stop it once it is finished, this is done in multiple UTs . But i see that the stop redis server part is not working properly as when redis server start is…
Neeraj
  • 11
  • 3
1
vote
0 answers

Redis server 'make test' failure when running in Alpine Docker

I am installing a redis server within a docker container using the following steps - wget https://download.redis.io/releases/redis-6.2.4.tar.gz - tar xvf redis-6.2.4.tar.gz - cd redis-6.2.4 - make When I run make test I get the following failure.…
shipwreck.sam
  • 31
  • 1
  • 1
1
vote
1 answer

node-redis-retry-strategy package is not working and I'm not able to limit number of reconnections and delay between every reconnection

I've setup a Redis caching and for that I've a Redis-server running on wsl2 and client on NodeJS platform. As soon as the redis-server went down I've to make a few connections that too with a waiting time, but it's making reconnection requests…
1
vote
0 answers

How to fetch redis cli set json and fetch from Get Api Spring boot redis?

I want response from redis cli to postman as this http://localhost:8585/api/home/getBestTrainerBasedRating [ { "trainerid": 28, "rating": 5.0, "trainerName": "yellow", "courseName": "", "price": 0.0, …
1
vote
0 answers

Redis Server in Ubuntu

I have installed Redis-server using command sudo apt install redis-server and it's showing the output on command redis-cli ping but when I see the status it is showing error message. ● redis-server.service - Advanced key-value store Loaded:…
Narendra Vishwakarma
  • 1,790
  • 2
  • 5
  • 7
1
vote
0 answers

signals and tasks file are not connecting in django celery

I am using Django signals to trigger a task (sending mass emails to subscribers using Django celery package)when an admin post a blogpost is created from Django admin. The signal is triggered but the task function in the task file is not called.…
1
vote
0 answers

aioredis.errors.ProtocolError: Protocol error, got "H" as reply type byte

I have a Django project and I'm trying to implement the Redis channel. When I add the config below, my app works. CHANNEL_LAYERS = { "default": { "BACKEND": "channels.layers.InMemoryChannelLayer" } } However, when I try to add the…
Aslı Kök
  • 616
  • 8
  • 19
1
vote
2 answers

How to set password for redis-server

I have a 3-instance high availability redis deployed. On each server I have redis and sentinel installed. I am trying to set a password so that it requests it at the moment of entering with the command "redis-cli". I am modifying the value of the…
user14867757
1
vote
2 answers

Cannot start redis from systemd

On a Debian 10 machine, I can start redis-server by just typing redis-server. However I'd like to run it as a daemon. I can see in /etc/systemd/system that it is symlinked like this: lrwxrwxrwx 1 root root 40 Sep 12 2019 redis.service ->…
Milkyway
  • 705
  • 3
  • 12
  • 25
1
vote
0 answers

Redis mass insert problem "ERR Protocol error: too big mbulk count string"

UPDATE I split the file into multiple files each roughly with 1.5 million lines and no issues. Attempting to pipe into Redis 6.0.6 roughly 15 million lines of SADD and HSET commands properly formatted to Redis Mass Insertion but it fails with the…
1
vote
1 answer

Action cable not working in rails 5.1.7 on production environment

I using action cable with rails 5.1.7 and it's working fine in development env and production env on locally but when it's deployed on aws ec2 it's not working. Below is the production.rb code for action cable config. config.action_cable.url =…
1
vote
2 answers

Redis 6 TLS Support and Redis Sentinel

I would like to set up a basic 3-node Redis Sentinel setup using the new TLS features of Redis 6. Unfortunately, it doesn't seem like Redis 6 Sentinel is smart enough to speak TLS to clients. Does anyone know of a way to do this, or if it's not…
Testing
  • 176
  • 1
  • 10
1
vote
2 answers

Pyspark + Redis Remote Server

I have a server with redis and maven configured I then do the following sparkSession spark = pyspark .sql .SparkSession .builder .master('local[4]') .appName('try_one_core') .config("spark.redis.host", "XX.XXX.XXX.XXX") .config("spark.redis.port",…
1 2 3
8 9