Hi,

caching in files is probably one of the slowest things you can do. In
the case of php files it might be better with an opcode cache.

If you really want fast caching with the best possible read
performance, store your array in shared memory (RAM) via APC or
XCache. Alternatively, but a bit slower since network overhead is
involved, is Memcached which has the advantage that the cache can be
shared by many PHP machines, whereas each PHP machine has its own
local APC/XCache shared-memory cache.

-- 
You received this message because you are subscribed to the Google Groups 
"symfony users" group.
To post to this group, send email to symfony-us...@googlegroups.com.
To unsubscribe from this group, send email to 
symfony-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en.

Reply via email to