I have my website cached using full page caching. So for every page an html file is created.
As I am using CakePHP, I can define that APC caching would be used instead of file caching. However, if done that, html files are still being created (APC is installed correctly).
So question: is there any logic in using APC with full page caching? Does it give any benefits? Is it possible to put cached html file to RAM somehow and read it from there when needed?
P.S. I am not talking about APC opcode caching functionality. Just data caching.