Drupal 中的外部页面缓存是什么
Drupal 中的外部页面缓存是什么?它与 Drupal 中固有的缓存机制有何不同?
What is external page caching in Drupal? How is it different from the intrinsic caching mechanism in Drupal?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
外部缓存可能类似于 Varnish。它可以在不使用 php / Drupal / mysql 的情况下交付内容,因此速度非常快。我不确定确切的大小,但同一台服务器每秒显示的 Varnish 缓存页面数可能比 drupal 缓存多 50-xxx 倍。
因此,您可以交付大量内容,而无需使用大量服务器电源。
External caching could be something like Varnish. It makes it possible to deliver content without using php / Drupal / mysql and is thus very fast. I'm not sure the exact magnitude, but the same server could probably show 50-xxx times more pages per second from Varnish cache than from drupal cache.
So you can delivery a lot of content without using much server power doing it.