使用Python将SQL查询结果存储到Redis中?
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先,安装 redis-py 然后执行以下操作:
如果您有一个复杂的结构(例如对象或tuple/list)我认为最好的选择是将数据序列化为您喜欢的某种格式(例如 json ,或者,对于 python, pickle)并简单地将其存储为字符串:
请注意,在 Redis 中,您不能按值查询数据,只能按键查询数据。详细信息取决于您的数据,因此如果您需要更准确的答案,请提出更准确的问题。 :) 示例代码确实是最好的。
First, install redis-py then do:
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:
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.