Question

I was asked to design a class for caching SQL query results. Calling the class' query method will query and cache the entire set of results at the first time; afterward, each subsequence query will retrieve only the updated portion, and will merge the result into the cache. If the class is required to be generic, i.e. NO knowledge about the db and the tables, do you have any idea? Is it possible, and how to retrieve only updated/new records since the last query?

Thanks! William

Was it helpful?

Solution

MySQL (nor any other SQL-based database, as far as I know) does not store the "last update time" or "insert time" of a row anywhere, at least not anywhere you can query (parsing out the binary log is probably not something you're looking to do).

To get "new records" you will need to either

  • Query for all records with an autoincrement value higher than the last known max
  • Add a datetime/timestamp to the table that would store the insert/updated time of the record, and query based on that

You could consider having your code create its own table that would store a record every time an UPDATE or INSERT happened on another table, and then add triggers to all those other tables that would populate your table.

But that might be a bit much.

OTHER TIPS

Either your cache class has to be notified of all updates, or you need some kind of expiration.

The only other option is to query the database to check, but then you kind of lose the point of the cache :)

The above is true for a "generic" cache. If you implement a specialized cache for a particular table you might be able to exploit DML patterns.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top