移动服务提供商数据库为何如此之快?
我想知道这些数据库如何
拥有超过数百万条记录并且
每秒数百万次查找速度太快了。
它们是如何优化的?
有没有专门的服务器托管这些数据库? 它们是如何缩放的?
i was wondering on how these databases
which have over millions of records and
millions of lookups per second soo fast.
how are they optimised?
are there any special servers hosting these databases?
how are they scaled?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
大型应用程序跨多个服务器横向扩展。您的 ID 通常会散列到某个有限数量(例如 50 个)的存储桶中,这 50 个服务器每秒可以处理 1,000 个请求。假定使用情况在所有 50 台服务器上相当均匀地分配。备份和恢复有点复杂,因为“某些”用户可能会丢失数据,而其他用户则不会。
large applications are scaled out across multiple servers. Your ID is usually hashed into a bucket of some finite number (ex. 50) and these 50 server can handle 1,000's of requests per second. Usage is presumed to be split fairly evenly over all 50 servers. Backup and recovery are a bit more complicated in that "some" users may lose data while others won't.