nemoguardrails.server.datastore.redis_store
nemoguardrails.server.datastore.redis_store
Module Contents
Classes
API
Bases: DataStore
A datastore implementation using Redis.
client
async
Return the value for the specified key. Args: key: The key to lookup.
Returns: Optional[str]
None if the key does not exist.
async
Save data into the datastore.
Parameters:
key
The key to use.
value
The value associated with the key.
Returns:
None