使用Python将SQL查询结果存储到Redis中?

发布于 2024-12-29 21:01:05 字数 91 浏览 1 评论 0原文

我正在使用 SQLAlchemy+SQLSoup 来查询表,现在我需要将查询结果作为列表存储在 Redis 中。任何有关操作方法的帮助都会很棒。

谢谢。

I am using SQLAlchemy+SQLSoup to query a table, now I need to store the query result as a List in Redis. Any help on how-to would be great.

Thanks.

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

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

发布评论

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

评论(1

方圜几里 2025-01-05 21:01:05

首先,安装 redis-py 然后执行以下操作:

>>> import redis
>>> r = redis.StrictRedis(host='localhost', port=6379, db=0)
>>> for e in yourlist:
...     r.rpush('yourlist', e)

如果您有一个复杂的结构(例如对象或tuple/list)我认为最好的选择是将数据序列化为您喜欢的某种格式(例如 json ,或者,对于 python, pickle)并简单地将其存储为字符串:

>>> r.set('key', val)

请注意,在 Redis 中,您不能按值查询数据,只能按键查询数据。详细信息取决于您的数据,因此如果您需要更准确的答案,请提出更准确的问题。 :) 示例代码确实是最好的。

First, install redis-py then do:

>>> import redis
>>> r = redis.StrictRedis(host='localhost', port=6379, db=0)
>>> for e in yourlist:
...     r.rpush('yourlist', e)

If you have a complex structure (like an object or a tuple/list) I think your best bet is to serialize the data into some format you prefer (like json or, in case of python, pickle) and simply store it as a string:

>>> r.set('key', val)

Note that in Redis you can't query data by value, only by key. Details depend on your data, so if you need more precise answer please ask more precise question. :) A sample code would really be best.

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