Redis
 sql >> Database >  >> NoSQL >> Redis

Utilizzo di redis come cache LRU per postgres

In pseudocodice:

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

Potrebbe essere necessario un adattatore personalizzato per il motore di query che stai utilizzando.