python appengine内存缓存优化

发布于 2024-12-28 04:57:32 字数 139 浏览 1 评论 0原文

我正在 google appengine django nonrel 上开发一个 api,它将满足很多请求。我想缓存重复的请求。 估计会对 api 产生一些非常频繁的查询,我希望能够即时找出这些查询是什么,以便我可以预先缓存它们。有没有办法获取最频繁的内存缓存键?

I am developing an api on google appengine django nonrel that will serve a lot of requests. I would like to cache repeated requests.
It is estimated that there will be some really frequent queries to the api, and I would like to be able to find out what these queries are on the fly so that I may pre-cache them. Is there a way of getting the most frequent memcache keys?

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

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

发布评论

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

评论(2

装纯掩盖桑 2025-01-04 04:57:32

缓存所有可能频繁出现的内容,并让 Memcache 的 LRU 策略逐出那些访问频率不够高、无法保证保留在缓存中的项目。

Cache everything that might be frequent, and let Memcache's LRU policy evict items that aren't accessed frequently enough to warrant remaining in the cache.

轻许诺言 2025-01-04 04:57:32

假设您指的是“最频繁的数据存储区查询”,则 appstats 为可能是你需要的。

Presuming you mean "the most frequent datastore queries", appstats is probably what you need.

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