相当于node.js中的.net输出缓存?
来自 asp.net 的 Node 新手,因此对在 Node.js 中实现缓存的最佳模块/框架感到好奇。我想缓存一些昂贵的数据库查询,因此寻找一种简单的方法来缓存数据库结果或整个 http 页面输出到内存。
在 .net 中,它将使用 httpcache 或页面输出缓存。节点世界里有等价物吗?
我应该设置本地 memcached 或 redis 服务器来完成此任务吗?
New to node coming over from asp.net so was curious about the best modules/frameworks to implement caching in node.js. I would like to cache some expensive db queries so looking for an easy way to cache db results or entire http page output to memory.
In .net it would be using either httpcache or page output caching. Is there an equivalent in the node world?
Should I just set up a local memcached or redis server to accomplish this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用的是express,那么有一个设置选项用于启用视图缓存,也是因为express是内置的在 connect 之上,您可以尝试查看 connect-cache 模块。对于缓存静态内容,您可以查看 node-static 例如。在 memcached 或 redis 中缓存数据库查询可能高度依赖于您的数据结构,但我可能会选择 redis,因为它支持
If you are using express then there is a settings option for enabling view cache, also since express is built on top of connect you can try to look at connect-cache module. For caching static stuff you can take a look at node-static for example. Caching database queries in memcached or redis may be highly dependent on your data structure, but I would probably choose redis since it supports more advanced data structures which may be handy.