1
0
mirror of https://github.com/chubin/cheat.sh.git synced 2026-06-20 21:26:44 +02:00
Files
cheat.sh/lib/stateful_queries.py
T
2018-05-19 21:03:16 +00:00

20 lines
406 B
Python

"""
Support for the stateful queries
"""
import redis
REDIS = redis.StrictRedis(host='localhost', port=6379, db=1)
def save_query(client_id, query):
"""
Save the last query `query` for the client `client_id`
"""
REDIS.set("l:%s" % client_id, query)
def last_query(client_id):
"""
Return the last query for the client `client_id`
"""
return REDIS.get("l:%s" % client_id)