I have a lot of data that I can potentially work with, it hardly ever changes, and it's not a problem at all to refresh the cache every now and then - but ideally the cache would be refreshed only when new data enters the table.
I have built with the understanding that CakePHP can cache an entire table and work off of that, even with slower caching like the File cache. Meaning I query once for all information, and if I ever say "findById(54)", it just searches that cache for ID 54 and deals it out. I do not want to only cache the content of ID 54. I also want to avoiding changing the code I have already done. I know that it must be possible to just findAll() and cache that once, but I haven't built with that in mind and I'd rather not go through it all if I don't have to.
My question is, how do I get CakePHP to cache the entire table and query off that cache? Is it possible? I'm open to using memcached, but I'm thinking for its beginning that I would only use File caching.