什么样的页面加载可以
架构 问:
如果一个站点需要处理 100 个并发页面加载和 100,000 个并发会话,这是否会被视为高容量站点?需要一个重型代码框架来支持该卷? (假设页面加载不是数据密集型)
Architecture Q:
If a site is required to handle 100 simultaneous page loads and 100,000 simultaneous sessions, would that be considered a high-volume site? One requiring a heavy-duty code framework to support the volume? (Assuming page loads are not data intensive)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
像往常一样 - “这取决于”。
没有什么是绝对的;在某些地方/环境中,您的 100 / 100,000 数字将是天文数字,而在其他地方,它们几乎不会被注意到。
“重型”代码框架到底是什么意思?对于大容量站点,您真正需要的唯一东西是效率:在使用最少资源的同时尽可能快地提供响应 - 在这种情况下,“重型”框架是无关紧要的。
由于其他原因需要重型或综合框架,通常管理满足其他要求所需的复杂性(例如提供多租户、复杂的缓存、跨位置复制、与其他系统集成以及轻松有效地管理、维护、扩展和配置解决方案)。
As usual - "it depends".
Nothing is absolute; in some places/contexts your 100 / 100,000 figures will be astronomically high, in others they'll scarely be noticable.
What exactly do you mean by "heavy duty" code framework? For a high volume site the only thing you really need is efficiency: providing responses as quickly as possible whilst using the lowest amount of resources - in this context a "heavy duty" framework is irrelevant.
A heavy duty or comprehensive framework is needed for other reasons, usually managing the complexity required to meet other requirements (like providing multi-tenancey, complex caching, replication across locations, integration with other systems and the ability to easily and effectively manage, maintain, extend and configure the solution).