Python memcache 在 get_multi() 中保留顺序

发布于 2024-10-06 19:56:06 字数 66 浏览 6 评论 0原文

如何保留使用 memcache 的 get_multi() 函数获取的值的顺序?默认情况下,返回的顺序是随机的。谢谢。

How can I preserve the order of the values fetched with memcache's get_multi() function? By default, the order returned is random. Thanks.

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

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

发布评论

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

评论(2

写下不归期 2024-10-13 19:56:06

Python 的 Memcache 库返回一个字典,而 python 中的字典是无序的,因此您必须手动以正确的顺序从字典中获取值:

result = cache.get_multi(keys)
values = [result.get(key) for key in keys]

Python's Memcache library returns a dictionary, and dictionaries in python are unordered, so you have to get the values from the dictionary in the right order manually:

result = cache.get_multi(keys)
values = [result.get(key) for key in keys]
桃气十足 2024-10-13 19:56:06

我记得memcache有标志GET PRESERVE ORDER,尝试将其添加到函数标志中

as I remember memcache has flag GET PRESERVE ORDER, try adding this to function flags

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