Redislite 是一个 Redis 的 Python 模块,用于在 python 代码中对 Redis 数据进行操作。
示例代码:
>>> from redislite import Redis
>>> redis_conNECtion = Redis('/tmp/redis.db')
>>> redis_connection.keys()
[]
>>> redis_connection.set('key', 'value')
True
>>> redis_connection.get('key')
'value'