mirror of
https://github.com/chubin/cheat.sh.git
synced 2024-11-23 19:43:33 +03:00
20 lines
406 B
Python
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)
|