How to config more than one redis?
See original GitHub issueIn the environment var, I set like this :
- name: EX_ConnectionStrings__Redis value: "server=redis-1.web:6379,abortConnect=false"
this is for one redis.
and I want to setting more than one redis instance.How?
like this?
server=redis-1.web:6379,abortConnect=false;redis-2.web:6379,abortConnect=false;
These redis are organized by redis sentine. Is this redis provider support redis sentine?
If not support, Is it possible for me to provide more than one redis connections and the provider are smart enough to handle these redis connections ?
Issue Analytics
- State:
- Created 3 years ago
- Comments:7 (4 by maintainers)
Top Results From Across the Web
How to setup and run multiple Redis server instances on a ...
1 ) Setup a second Redis instance configuration file · 2) Change the following lines in /etc/redis/redis_6380. · 3) Create a second Redis...
Read more >Redis - Setting up multiple server instances on a Linux host
In this tutorial, we'll setup multiple Redis instances on a linux box (Ubuntu 16.04 / CentOS 7) assuming we already have a Redis...
Read more >use multiple redis configuration spring boot - java
1 Answer. By using the @Qualifier annotation along with the respective qualifier names (tokenRedisTemplate and invoiceRedisTemplate), you can ...
Read more >Run multiple Redis Instances on your Machine | by Dileep
This is one method to run multiple instances of Redis server. If you already installed Redis server by ( apt-get install redis )...
Read more >How do I configure another instance of redis on ubuntu?
Create a new config file /etc/redis/redis-new.conf (copied from redis.conf) and change these fields in the new config.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
It works!
Sentinel is not currently support by
StackExchange.Redis
but I have recently been working with them to try and get it supported. Once that work is done then we plan to use a sentinel setup ourselves and it will be supported in Exceptionless. Let them know in that issue that this is important to you.