Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何缓存 expressjs 路由生成的响应。这条路线有很多数据库访问,对其进行的更改很少。是否有任何可用的节点模块。
谢谢
连接缓存应该可以解决问题。将此作为中间件添加到您的应用程序中
var connect_cache = require('connect-cache'); app.use( connect_cache({rules: [{regex: /.*/, ttl: 60000}]}) );