Redis
 sql >> Base de Dados >  >> NoSQL >> Redis

Usando redis como um cache LRU para postgres


Em pseudocódigo:
see if redis has the record by 'record_type:record_id'
if so return the result
if not then query postgres for the record_id in the record_type table
store the result in redis by 'record_type:record_id'
return the result

Isso pode ter que ser um adaptador customizado para o mecanismo de consulta que você está usando.