Combine output caching and dependencies

Notice: This thread is very old.
josef.sabl
Member | 153
+
0
-

There are several interesting methods of using cache than just save() and load() like function result caching or specifically output caching. But as it seems these methods do not support use of dependencies (expiry time e. g.).

Am I missing something? Or am I just out of luck and have to implement this in the old fashioned way?

Thank you.

Last edited by josef.sabl (2014-09-09 13:33)

David Matějka
Moderator | 6445
+
+1
-

It does support dependencies, see OutputHelper api

josef.sabl
Member | 153
+
0
-

Great. I didn't think about end() method, I was looking at start() at first. Thank you.