I'm using Windows 7 for my PHP development, and I just installed PHP APC Cache. Now first thing I noticed is that when APC is enabled on my local Windows machine, requests are slower then when APC is disabled. It was strange to me at first, but then I read that when using APC cache under Windows, APC needs temp directory to save cache there. So it seems that APC is slower because it does not save cache in RAM memory, but somewhere on disc. And this is all fine since Im only learning about APC cache.
My question is, where is this cache saved on disk? And how can I tell PHP to save cache in folder I want, lets say c:\wamp\apache\temp\ , thats where my sessions are stored, and thats where I want my APC cache to go, since in dosent go to RAM.
Where can i set this up? Somewhere in php.ini file?
Thanks!