I was wondering if it was possible to get some more details about a stored Cache, generated using the Cache libraries.
When calling Cache::get("some_cache") the unserialized contents of the cache is returned which is great, but I'm not sure how exactly you're supposed to find out more information about the cache store itself.
For example, how do I found out how long left a cache has before it's considered expired? How do I find out when it was created? Size of the cache? And so on. Do I have to read the file manually to find this out or are there methods to do this for you already?
I'm currently using the file-based cache driver but I was thinking that this question would apply to all cache drivers.