1
0
Fork 0
iredis/scripts/set_999_keys_in_redis.py

7 lines
114 B
Python
Raw Normal View History

import redis
client = redis.StrictRedis(db=3)
for i in range(100000):
client.set(f"key-{i}", "hello world")