交通繁忙的设计指南

发布于 2025-01-08 09:45:03 字数 226 浏览 0 评论 0原文

我正在开发一个电影评论网站。在当前的设计中,前端(jQuery、HTML、CSS)与模型(处理 MYSQL 数据库的单独 php 脚本)连接以进行基本存储和检索。这种简单的设计适用于小流量。

我关心的是如何解决与同时收到许多请求的大流量相关的问题。 我应该对模型部分进行哪些设计更改以处理大流量并使系统可扩展?

PS:如果您需要更多信息,请告诉我。

谢谢

I am working on a website for movie reviews. In the current design, the front-end( jQuery, HTML, CSS) connects with the model (individual php scripts which deals with MYSQL database) for basic storage and retrievals. This trivial design will work for small traffic.

My concern is how to tackle problems related to heavy traffic with many requests coming in at the same time. What are the design changes i should do to the model part to handle heavy traffic and make the system scalable?

PS: please let me know if you need more info.

Thank you

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

匿名的好友 2025-01-15 09:45:03

http://redis.io/ - Redis 允许您的数据库驻留在内存中惰性写回磁盘。这极大地提高了数据库性能。先倒入一桶RAM。 Memcached 也是一种流行的工具,但功能不够丰富。

http://redis.io/ - Redis allows your database to be memory-resident with lazy writes back to disk. This greatly improves DB performance. Pour in a bucket of RAM first. Memcached is also a popular tool, but not as feature-packed.

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