brainix / pottery

Redis for humans. 🌎🌍🌏
Apache License 2.0
1.08k stars 57 forks source link

Dramatically speed up CachedOrderedDict.__init__() #625

Closed brainix closed 2 years ago

brainix commented 2 years ago

Previously, we were making multiple round trips to Redis, one per dict_key. Now, we make a single bulk call to Redis.

brainix commented 2 years ago

🐟