PHPFixing
  • Privacy Policy
  • TOS
  • Ask Question
  • Contact Us
  • Home
  • PHP
  • Programming
  • SQL Injection
  • Web3.0

Monday, September 5, 2022

[FIXED] How to scale Redis?

 September 05, 2022     redis     No comments   

Issue

I have a single instance Redis deployment, and my application uses multiple databases within that deployment.

I would like to scale it up, however, the issue is, RedisCluster does not support multiple databases. What are my best options?


Solution

You've only two options:

  1. You refactor your application layer to use sharding (i.e. Redis Cluster).
  2. You use regular master-slave replication to load balance your Redis work load.


Answered By - Matías Fidemraizer
Answer Checked By - Willingham (PHPFixing Volunteer)
  • Share This:  
  •  Facebook
  •  Twitter
  •  Stumble
  •  Digg
Newer Post Older Post Home

0 Comments:

Post a Comment

Note: Only a member of this blog may post a comment.

Total Pageviews

Featured Post

Why Learn PHP Programming

Why Learn PHP Programming A widely-used open source scripting language PHP is one of the most popular programming languages in the world. It...

Subscribe To

Posts
Atom
Posts
Comments
Atom
Comments

Copyright © PHPFixing