SymfonymeetsAPC (AlternativePHPCache)

Source: Internet
Author: User
Tags apc
SymfonymeetsAPC (AlternativePHPCache) Up to last week I was exclusively an XCache user if we talk about PHP accelerators. recently I needed to use APC with a symfony application. as symfony offers nice APC integration it went quite smooth.

Note that just enabling PHP accelerator (any) improves performance because of the opcode caching. that's why it shoshould always be used on the production environment. most of accelerators also offer API which enables us to cache anything.

PHP Accelerators in symfony

Taking advantage of the most popular accelerators is really easy in symfony. we are able to change caching strategies for several factories (view, internationalization, routing ). we can also cache Doctrine's DQL queries and results.

Symfony not only offline APC support with sfAPCCache class but there are also drivers for XCache (sfXCacheCache), EAccelerator (sfEacceleratorCache), memcache (sfMemcacheCache) and SQLite (sfSQLiteCache ). we can also quite easily implement our own driver by extending sfCache class.

This short tutorial cocould be also used for any other accelerator. It's just a matter of replacing sfAPCCache/Doctrine_Query_Cache with appropriate classes.

Enabling APC in Factories

All caching strategies are set to sfFileCache by default. we are able to change the settings for routing, view and i18n in a factory file (I. e. apps/frontend/config/factories. yml ):

all:  routing:    class: sfPatternRouting    param:      generate_shortest_url:            true      extra_parameters_as_query_string: true      cache:        class: sfAPCCache        param:          automatic_cleaning_factor: 0          lifetime:                  31556926  view_cache:    class: sfAPCCache  i18n:    param:      cache:        class: sfAPCCache        param:          automatic_cleaning_factor: 0          lifetime:                  31556926

From now on our routing, view cache and translations will be stored in a memory instead of a hard drive. This way symfony makes a less disk operations (which are slow ).

Enabling DQL and Result Cache in Doctrine

Enabling query cache in Doctrine is a quite safe operation. as long as we use prepared statements and don't create queries by string concatenation we don't have to worry. I think query cache can be enabled in most well written projects.

In symfony Doctrine is configured in configureDoctrine () method of the project configuration class (config/ProjectConfiguration. class. php). Enabling query cache is a matter of setting ATTR_QUERY_CACHE attribute:

/** * @param Doctrine_Manager $manager * @return null */public function configureDoctrine(Doctrine_Manager $manager){  $manager->setAttribute(Doctrine_Core::ATTR_QUERY_CACHE, new Doctrine_Cache_Apc());}

 

Enabling result cache might be tricky. it really depends on the project. various result sets cocould have different life times. also, result cannot be cached if we work with quickly changing data ("once it's retrieved it's outdated" kind of thing ). enabling result cache for everything in most situations won't be the best solution:

$manager->setAttribute(Doctrine_Core::ATTR_RESULT_CACHE, new Doctrine_Cache_Apc());

It's worth to mention that both query and result caches can be enabled not only on a manager level but also on the connection and query levels:

// Connection level result cache$connection->setAttribute(Doctrine_Core::ATTR_RESULT_CACHE, new Doctrine_Cache_Apc());// Query level query cache$query = Doctrine_Query::create()  ->useQueryCache(new Doctrine_Cache_Apc());// Query level result cache$query = Doctrine_Query::create()  ->useResultCache(new Doctrine_Cache_Apc());

Doctrine's documentation offers detailed description of both query and result caches: Query Cache & Result Cache.

The Future of APC

Long time ago I chose XCache because at that time it was better maintained and there was no performance difference. now that APC is actively developed and there are plans to include it in PHP core I have to reconsider my deder.

What do you use? Why? Did you run any benchmarks?

From: http://www.zalas.eu/symfony-meets-apc-alternative-php-cache

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.