Roadmap to becoming a developer in 2022
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
579 B

# Scaling Databases
2 years ago
Scaling databases is the process of adapting them to handle more data and users efficiently. It's achieved by either upgrading existing hardware (vertical scaling) or adding more servers (horizontal scaling). Techniques like sharding and replication are key. This ensures databases continue to be a robust asset as they grow.
2 years ago
Visit the following resources to learn more:
- [MongoDB: Database Scaling Basics](https://www.mongodb.com/basics/scaling)
- [Codecademy: Database Scaling Strategies](https://www.codecademy.com/article/database-scaling-strategies)