gpt4 book ai didi

node.js - 缓存来自 MongoDB 的数据

转载 作者:太空宇宙 更新时间:2023-11-04 02:16:09 25 4
gpt4 key购买 nike

我正在尝试使用node.js、express.js、jade 和 mongodb(托管在 mongolab.com 上)制作自己的博客系统。我想在一页上列出数据库中存储的所有帖子。添加更多帖子后,我担心页面加载速度,因为每次页面刷新时我都会联系 mongodb。

我的问题是:每次页面刷新时都可以从数据库获取数据吗?或者我怎样才能将这些数据缓存在某个地方?或者是否有更快的方法,因为这些数据不经常更改?

最佳答案

关于MongoDB上的查询缓存,官方文档是这样说的:

MongoDB keeps most recently used data in RAM. If you have created indexes for your queries and your working data set fits in RAM, MongoDB serves all queries from memory.

MongoDB does not cache the query results in order to return the cached results for identical queries.

因此,根据您的工作负载和硬件资源,由于上面第一句话,您可能会对某些查询获得较高的命中率。

但是,请考虑在站点前面设置一个缓存层,例如 CDN,甚至使用 Nginx 或 Varnish 进行一些基本缓存。在我看来,这将是适合您的解决方案,而不是仅依赖数据库。

关于node.js - 缓存来自 MongoDB 的数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35610938/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com