question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

How to config more than one redis?

See original GitHub issue

In 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:closed
  • Created 3 years ago
  • Comments:7 (4 by maintainers)

github_iconTop GitHub Comments

1reaction
a14907commented, Jun 3, 2020

@a14907 I haven’t actually tried it, but we are just passing through the server= part of the connection string EX_ConnectionStrings__Redis to StackExchange.Redis connect. So if you can do multiple in that (which I think you can) then you should be able to do the same.

It works!

1reaction
ejsmithcommented, May 22, 2020

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.

Read more comments on GitHub >

github_iconTop 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 >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found