Friday, December 3, 2010

Re: use APC & Memcached at the same tim

APC performs (byte code caching or intermediate code) which means that it caches the binary form of your PHP script and once this script is being called, the cached version of the script is the one that will be executed, this will save a lot of performance and server resources, on the other hand, memcached is being used to cache objects of several forms, like caching the results of a database query "a model operation in CakePHP's case", an array, or someother forms of objects, you can use both of them for your application caching, each for its own task, take a look here to configure the desired cache engines that you would like to use in your CakePHP application http://book.cakephp.org/view/156/Caching

On Fri, Dec 3, 2010 at 12:16 PM, pang <yi@tagroup.se> wrote:
CakePHP offer both APC and Memcached cache engine for cache purpose,
but each of them has different preferred usage,
I am wondering is it possible to config Cake to work with both of
them? and how can It be achieved?

Check out the new CakePHP Questions site http://cakeqs.org and help others with their CakePHP related questions.

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

Check out the new CakePHP Questions site http://cakeqs.org and help others with their CakePHP related questions.
 
You received this message because you are subscribed to the Google Groups "CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to
cake-php+unsubscribe@googlegroups.com For more options, visit this group at http://groups.google.com/group/cake-php?hl=en

No comments: