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
1
vote
0 answers

HUEY alternative for rq.get_current_job()

We are migrating from rq, django-rq to HUEY for one of our Django project as rq is causing trouble running in Windows machine due to fork issue. There was a function in rq named get_current_job() which actually returns the current instance of…
Saurav Kumar
  • 563
  • 1
  • 6
  • 13
1
vote
0 answers

Redis miss most of the request

I found strange behavior while using Redis. Sometimes most requests to Redis are miss. I set eviction policies to allkeys-lru if I understand correctly if memory usage is full Redis will evict less recent use key. so it may the cause of this…
Phatthana Batt
  • 356
  • 3
  • 13
1
vote
1 answer

`ERR Syntax error, try CLIENT (LIST | KILL ip:port)` redis server error

ERR Syntax error, try CLIENT (LIST | KILL ip:port) error shows up when running an active job, I have tried several solutions but still getting the same error. controller.rb AutoMailerJob.set(wait_until: 1.minute).perform_later(project) gemfile gem…
1
vote
1 answer

VUE.JS template not showing up

I have created a template for chat module. It was working fine yesterday but today there were some issues in some npm module so I ran the command npm audit fix --force and after that command is finished my chat template or any VUE template stops…
Mohsin Abbas
  • 630
  • 8
  • 29
1
vote
1 answer

Redis values set from Python are not reflecting in redis client

I have installed redis on my OS X, and trying to set and get some values in Redis from Python 3.5 client. I have the Redis server on (through command redis-server) and the redis-client on as well (opened through the command redis-cli). This is what…
SexyBeast
  • 7,913
  • 28
  • 108
  • 196
1
vote
1 answer

Load CSV file in Redis using Redis-cli on Windows

I went through questions like how to import a ".csv " data-file into the Redis database and decided to put a question here after lot of web searching. I've an employee.csv file and looking to import that file using the redis-cli. I am using the…
PAA
  • 1
  • 46
  • 174
  • 282
1
vote
1 answer

How to start `redis-sentinel` server successfully

Sorry redis newbie here. When I run redis-sentinel 42533:X 10 Nov 21:21:30.345 # Warning: no config file specified, using the default config. In order to specify a config file use redis- sentinel /path/to/sentinel.conf 42533:X 10 Nov 21:21:30.346…
srm
  • 655
  • 1
  • 8
  • 21
1
vote
1 answer

cannot kill redis-server on linux

No matter what I do I can't seem to kill redis without another instance popping up immediately with a different PID -- I checked to make sure I was killing the parent process and I was. Any suggestions?? I've already tried restarting my machine.…
ascourtas
  • 227
  • 2
  • 10
1
vote
2 answers

MongoDB server not accessible in local Network despite binding ip

I am using MongoDB v3.6.3 on macOS, installed via home-brew. I have used almost every possible way to make my MongoDB server accessible on local network, but to no avail. I have: Turned off firewall on both machines Edited \etc\mongod.conf file to…
Nabeel Javed
  • 11
  • 1
  • 3
1
vote
1 answer

Q: How do I add nicehash support to open-ethereum-pool for musicoin

I have a fork of open-ethereum-pool by techievee src: https://github.com/techievee/open-ethereum-pool I can connect normal GPU miners without any issue Connected Miners However I am presented with an error every time I try and connect NiceHash to…
calix
  • 11
  • 2
1
vote
3 answers

redis-server places redis.sock in wrong folder

Im configuring openvas and the scanner looks for the redis.sock by default in /tmp/redis.sock. I have edited to the redis.conf config file to show unixsocket /tmp/redis.sock unixsocketperm 777 Upon restarting the service, it instead places the…
pm1391
  • 275
  • 2
  • 14
1
vote
0 answers

StackExchange.Redis can't write to or read from local Redis Server when I deploy my asp.Net Mvc application to IIS 8.5 on Windows Server 2012 R2

I have an asp.net mvc application which works on .Net 4.6.2 framework. This app has Dependency Injection with Inversion of Control technics using SimpleInjector and Aspect Oriented Programming technics using PostSharp. StackExchange.Redis library…
1
vote
1 answer

Queuing data to redis with php-resque is slow

I'm using php-resque for queuing my jobs. And I'm doing apache ab tool to benchmark my performance. php-resque does good job, but it's slow as every time my it connects to redis which impacts performance (without connection it handles ~130…
shyammakwana.me
  • 5,562
  • 2
  • 29
  • 50
1
vote
2 answers

Redis Default Config Not Found

I'm following this tutorial to setup a Redis server: https://www.digitalocean.com/community/tutorials/how-to-install-and-use-redis and getting this error message: Mmmmm... the default config is missing. Did you switch to the utils directory? I'm in…
bvecc
  • 187
  • 4
  • 14
1
vote
0 answers

Redis Master/Slave different OS Platforms

Can Redis be run in a master/slave configuration with one instance being Redislabs' official Linux release and the other instance being Microsoft's Open Tech port? I'm using stackexchange.redis for the application's transport layer and I'm…
Aaron
  • 511
  • 3
  • 25
1 2 3
8 9