Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用redis开发一个python项目,经过一些研究,我没有找到任何解释如何在包含通配符'*'的字符串上创建get()的东西。
所以我有几个键:
example.first example.second
我想获取 example.first 和 example.second 的键/值:
mymap = r_server.hgetall('example.*')
有没有办法做到这一点?
在阅读了更深入的文档后,我发现了这一点:
mymap = r_server.keys(pattern='example.*')
如果那可以帮助任何人!