I'm using PHP's APC user-cache to cache some database results, e.a. loading a few smaller tables into APC. The reson I'm doing it is to reduce Mysql load and connections.
In my case there is a trade-off: either a few variables each with larger data arrays, or some thousands of variables with smaller data.
Example: 3000 variables each with 500 bytes, or 3 variables with 500 Kbyte. Which of those is faster/better?