mirror of
https://github.com/chubin/cheat.sh.git
synced 2025-01-08 14:17:13 +03:00
18 lines
344 B
Python
18 lines
344 B
Python
"""
|
|
Support for the stateful queries
|
|
"""
|
|
|
|
import cache
|
|
|
|
def save_query(client_id, query):
|
|
"""
|
|
Save the last query `query` for the client `client_id`
|
|
"""
|
|
cache.put("l:%s" % client_id, query)
|
|
|
|
def last_query(client_id):
|
|
"""
|
|
Return the last query for the client `client_id`
|
|
"""
|
|
return cache.get("l:%s" % client_id)
|