如何在 Express - Node.js 上激活缓存?

发布于 2024-11-18 15:48:53 字数 43 浏览 0 评论 0原文

如何激活 Express 上的缓存以快速提供页面?

谢谢

how can i active the caching on Express to provide the pages quickly?

Thank you

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

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

发布评论

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

评论(1

尽揽少女心 2024-11-25 15:48:53

您应该只在生产中启用缓存:

app.configure('production', function(){
  var oneYear = 31557600000;
  app.use(express.static(__dirname + '/public', { maxAge: oneYear }));
  app.use(express.errorHandler());
});

此外,您可能最好使用 CDN 或 Nginx 来托管静态文件。很多 CDN 都不是那么贵,我什至在 http://www.coralcdn.org/< 找到了这个免费的 CDN /a> 感谢 stackoverflow.com。根据 这篇博文 Nginx 甚至有 memcached< /a> 使您的网站速度极快

You should only enable caching in production:

app.configure('production', function(){
  var oneYear = 31557600000;
  app.use(express.static(__dirname + '/public', { maxAge: oneYear }));
  app.use(express.errorHandler());
});

Furthermore you are probably better of using CDN or Nginx to host static files. A lot of CDN's aren't that expensive and I even found this free CDN at http://www.coralcdn.org/ thanks to stackoverflow.com. According to this blog post Nginx even has memcached to make your site extremely fast

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