移动服务提供商数据库为何如此之快?

发布于 2024-08-15 15:58:03 字数 100 浏览 7 评论 0原文

我想知道这些数据库如何
拥有超过数百万条记录并且
每秒数百万次查找速度太快了。
它们是如何优化的?
有没有专门的服务器托管这些数据库? 它们是如何缩放的?

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

雨后咖啡店 2024-08-22 15:58:03

大型应用程序跨多个服务器横向扩展。您的 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文