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.
I Python と Redis を使用します。
redis_client.hvals(KEY) が LIST を返すことに気付きました
もし、Redisに巨大な口述があれば、
では、hvals はMemoryErrorを引き起こし ますか?
私はテストしませんが、私はこれについて心配しています。
Pythonジェネレーターとしてhvals結果を取得する方法はありますか?
したがって、メモリの問題が回避されます
返されたリストを割り当てずにこれを行うことができ、残りは gc に処理させます...
for item in redis_client.hvals(KEY): # process each item