redis Questions
7
Solved
how to check Redis server version?
I've found in Redis site this command:
$ redis-server
and that should give me (according to the site):
[28550] 01 Aug 19:29:28 # Warning: no config file specifi...
3
Solved
There is a very good SQL client solution for Linux users DBeaver. In spec, it is said that it supports MongoDB and Redis databases.However, there are no such drivers in "New connection" w...
4
I am getting my hand dirty with redis monitoring. So far I came up with this metrics useful to monitor about redis:
memory_used
through put
latency
connections
replication
I am newbie on this....
Particiaparticipant asked 21/9, 2015 at 6:33
4
Solved
I'm trying to connect to my local Redis server from inside a Docker container, but am unsuccessful. Here is the setup I have done so far:
I have Redis up an running on my host machine. I am able t...
1
Solved
I have a docker compose containerized client/server node app that is failing to create a stable connection to a redis cluster I have running on my local environment. The redis cluster has 6 nodes (...
Philipp asked 11/2, 2022 at 0:48
1
Solved
I have implemented a simple WebSocket proxy with FastAPI (using this example)
The application target is to just pass through all messages it gets to its active connections (proxy).
It works well on...
Doubletalk asked 12/2, 2022 at 10:10
10
Redis installation on RHEL fails when running make command. Below is the output
cd src && make all
make[1]: Entering directory `/root/Downloads/redis-3.2.0/src'
CC adlist.o
In file include...
3
Solved
I met a weied problem when installing phpredis by
cd phpredis && ./configure && make && make install
after that, I add
extension=redis.so
into php.ini.
I can get an...
5
Solved
I'm running a simple web app backed by node.js, and I'm trying to use redis to store some key-value pairs. All I do is run "node index.js" on the command line, and here's the first few lines of my ...
2
Solved
I am trying to follow the tutorial on read the docs for Django Channels. In the settings.py file I am trying to change the inmemory BACKEND to the redis backend with the following code:
CHANNEL_LA...
2
In AWS i am using ElastiCache Redis server and using node as backEnd and "promise-redis" package
this is how i am tried to do to connect to my redis server endpoint
client = redis.createC...
Term asked 27/3, 2021 at 9:26
3
I am using socket.io to communicate the swift client of my app with the server. Essentially, the client joins a socket connection upon opening the app and a job is instantly added to a Redis queue ...
Schmid asked 25/9, 2021 at 3:16
1
I'm using WSL. I installed Redis through apt-get, built it from source, and installed it from a PPA. In all 3 cases, I get This instance has cluster support disabled. I have cluster-enabled yes in ...
Swore asked 15/4, 2019 at 21:46
3
Solved
As i was going through the Celery implementation from the Celery documentation,
celery -A tasks worker --loglevel=INFO
gave output unexpected that from the documentation,
File
"d:\101_all_pr...
1
Solved
I am extremely confused on why this occurs when using Packer. What I want to do is move a local redis.conf file over to my AMI; however, it gives me an error as I do this. My Packer provisioner is ...
4
Solved
I am using nowjs and node_redis. I am trying to create something very simple. But so far, the tutorial have left me blank because they only do console.log().
//REDIS
var redis = require("redis"),
...
Epochal asked 3/8, 2011 at 9:54
9
I transferred my redis snapshot (dump.rdb file) using scp to a remote server. I need to run a redis server on this remote and recover the data from the dump.rdb file. How can I do that?
2
What would be the recommended maximum size for a job payload?
As a specific example, is a HTML document comprised of 500kb to 1Mb of text too large to be passed in to a job payload?
Since Sidekiq...
Friedlander asked 26/8, 2017 at 19:53
5
I have setup up Redis master slave configuration having one master (6379 port) and 3 slaves (6380,6381,6382) running in the same machine. Looks like cluster is setup properly as I can see the follo...
Has asked 21/3, 2016 at 7:15
1
Solved
I want to configure Redis as an LRU cache. I'd like to avoid repeating myself for the memory limits. If I do
command: redis-server --maxmemory-policy allkeys-lru
deploy:
resources:
limits:
memo...
2
Solved
There are tons of examples and resources for connecting to a redis "server" but not to a redis "cluster".
What I currently have is:
const redis = require("redis");
const client = redis.createC...
Sollows asked 8/5, 2020 at 9:15
4
Solved
Basic question: Using Node.js I would like to get all the keys in my redis db. My redis db looks like this when I call keys *;
aXF
x9U
lOk
So each record I have, has a unique key, generated as ...
3
Solved
Redis recommends a method of using SET with optional parameters as a locking mechanism. I.e. SET lock 1 EX 10 NX will set a lock only if it does not already exists and it will expire after 10 secon...
2
I am looking for something where I can keep an entire Rails based Model stored in Redis. There is Redis Objects that is found here https://github.com/nateware/redis-objects but that only works when...
Ijssel asked 4/4, 2012 at 1:57
2
Solved
I'm trying to understand the Redis & Sidekiq configuration in a Passenger+Rails app and have run into some lack of understanding. I start the redis server independently of my rails app, while S...
Quinn asked 7/2, 2017 at 6:40
© 2022 - 2024 — McMap. All rights reserved.