Redis
 sql >> Datenbank >  >> NoSQL >> Redis

Redis als LRU-Cache für Postgres verwenden

Im Pseudocode:

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

Dies muss möglicherweise ein benutzerdefinierter Adapter für die von Ihnen verwendete Abfrage-Engine sein.