2014-03-27 21:06:03 +00:00
|
|
|
from __future__ import division
|
|
|
|
|
|
|
|
from datetime import datetime
|
2018-03-26 21:50:08 +00:00
|
|
|
from cachecontrol.cache import BaseCache
|
2014-03-27 21:06:03 +00:00
|
|
|
|
|
|
|
|
2018-03-26 21:50:08 +00:00
|
|
|
class RedisCache(BaseCache):
|
2014-03-27 21:06:03 +00:00
|
|
|
|
|
|
|
def __init__(self, conn):
|
|
|
|
self.conn = conn
|
|
|
|
|
|
|
|
def get(self, key):
|
2014-04-23 06:24:08 +00:00
|
|
|
return self.conn.get(key)
|
2014-03-27 21:06:03 +00:00
|
|
|
|
|
|
|
def set(self, key, value, expires=None):
|
|
|
|
if not expires:
|
2014-04-23 06:24:08 +00:00
|
|
|
self.conn.set(key, value)
|
2014-03-27 21:06:03 +00:00
|
|
|
else:
|
2017-07-12 00:36:15 +00:00
|
|
|
expires = expires - datetime.utcnow()
|
2018-09-09 12:07:57 +00:00
|
|
|
self.conn.setex(key, int(expires.total_seconds()), value)
|
2014-03-27 21:06:03 +00:00
|
|
|
|
|
|
|
def delete(self, key):
|
|
|
|
self.conn.delete(key)
|
|
|
|
|
|
|
|
def clear(self):
|
|
|
|
"""Helper for clearing all the keys in a database. Use with
|
|
|
|
caution!"""
|
|
|
|
for key in self.conn.keys():
|
|
|
|
self.conn.delete(key)
|
2015-04-28 17:32:10 +00:00
|
|
|
|
|
|
|
def close(self):
|
2018-03-26 21:50:08 +00:00
|
|
|
"""Redis uses connection pooling, no need to close the connection."""
|
|
|
|
pass
|