brisonus_app_eq/ERNCTuningTool/test/test_redis.py

8 lines
122 B
Python
Raw Normal View History

2025-02-18 22:05:52 +08:00
import redis
r = redis.StrictRedis(host='localhost', port=6379, db=0)
r.set('foo', 'bar')
val = r.get('foo')
print(val)