Performance and Scalability - jamongx/twitter-clone GitHub Wiki
- Strategies to handle growth and increased load, including database sharding/partitioning, caching strategies, etc.
Horizontal Scaling
- Design your services to be stateless so that they can easily scale horizontally to handle increased load.
Load Balancing
- Employ load balancers to distribute incoming requests across multiple instances of a service.