1
0
mirror of synced 2024-12-13 22:56:04 +03:00
doctrine2/manual/docs/en/caching.txt

176 lines
7.4 KiB
Plaintext
Raw Normal View History

2007-10-01 12:30:25 +04:00
++ Introduction
{{Doctrine_Cache}} offers an intuitive and easy-to-use query caching solution. It provides the following things:
* Multiple cache backends to choose from (including Memcached, APC and Sqlite)
* Advanced options for fine-tuning. {{Doctrine_Cache}} has many options for fine-tuning performance.
Initializing a new cache driver instance:
<code type="php">
$cacheDriver = new Doctrine_Cache_Memcache($options);
2007-10-01 12:30:25 +04:00
</code>
++ Drivers
+++ Memcache
Memcache driver stores cache records into a memcached server. Memcached is a high-performance, distributed memory object caching system. In order to use this backend, you need a memcached daemon and the memcache PECL extension.
<code type="php">
// memcache allows multiple servers
$servers = array('host' => 'localhost',
'port' => 11211,
'persistent' => true);
$cacheDriver = new Doctrine_Cache_Memcache(array('servers' => $servers,
2007-10-01 12:30:25 +04:00
'compression' => false));
</code>
Available options for Memcache driver:
||~ Option ||~ Data Type ||~ Default Value ||~ Description ||
|| servers || array || array(array('host' => 'localhost','port' => 11211, 'persistent' => true)) || An array of memcached servers ; each memcached server is described by an associative array : 'host' => (string) : the name of the memcached server, 'port' => (int) : the port of the memcached server, 'persistent' => (bool) : use or not persistent connections to this memcached server ||
|| compression || boolean || false || true if you want to use on-the-fly compression ||
+++ APC
The Alternative PHP Cache (APC) is a free and open opcode cache for PHP. It was conceived of to provide a free, open, and robust framework for caching and optimizing PHP intermediate code.
The APC cache driver of Doctrine stores cache records in shared memory.
<code type="php">
$cacheDriver = new Doctrine_Cache_Apc();
2007-10-01 12:30:25 +04:00
</code>
+++ Db
Db caching backend stores cache records into given database. Usually some fast flat-file based database is used (such as sqlite).
Initializing sqlite cache driver can be done as above:
<code type="php">
$conn = Doctrine_Manager::connection(new PDO('sqlite::memory:'));
$cacheDriver = new Doctrine_Cache_Sqlite(array('connection' => $conn));
2007-10-01 12:30:25 +04:00
</code>
2007-11-30 23:34:07 +03:00
++ Query Cache & Result Cache
2007-10-01 12:30:25 +04:00
+++ Introduction
2007-11-30 23:34:07 +03:00
Doctrine provides means for caching the results of the DQL parsing process, as well as the end results of DQL queries (the data). These two caching mechanisms can greatly increase performance. Consider the standard workflow of DQL query execution:
2007-10-01 12:30:25 +04:00
# Init new DQL query
# Parse DQL query
# Build database specific SQL query
# Execute the SQL query
# Build the result set
# Return the result set
Now these phases can be very time consuming, especially phase 4 which sends the query to your database server. When Doctrine query cache is being used only the following phases occur:
# Init new DQL query
2007-11-30 23:34:07 +03:00
# Execute the SQL query (grabbed from the cache)
# Build the result set
# Return the result set
If a DQL query has a valid cache entry the cached SQL query is used, otherwise the phases 2-3 are executed normally and the result of these steps is then stored in the cache.
The query cache has no disadvantages, since you always get a fresh query result. You should therefore always use it in a production environment. That said, you can easily use it during development, too. Whenever you change a DQL query and execute it the first time Doctrine sees that is has been modified and will therefore create a new cache entry, so you dont even need to invalidate the cache. It's worth noting that the effectiveness of the query cache greatly relies on the usage of prepared staments (which are used by Doctrine by default anyway). You should not directly embed dynamic query parts and always use placeholders instead.
When using a result cache things get even better. Then your query process looks as follows (assuming a valid cache entry is found):
# Init new DQL query
# Return the result set
As you can see, the result cache implies the query cache shown previously.
You should always consider using a result cache if the data returned by the query does not need to be up-to-date at any time.
+++ Query Cache
++++ Using the query cache
You can set a connection or manager level query cache driver by using Doctrine::ATTR_QUERY_CACHE. Setting a connection level cache driver means that all queries executed with this connection use the specified cache driver whereas setting a manager level cache driver means that all connections (unless overridden at connection level) will use the given cache driver.
Setting a manager level query cache driver:
<code type="php">
$manager = Doctrine_Manager::getInstance();
$manager->setAttribute(Doctrine::ATTR_QUERY_CACHE, $cacheDriver);
</code>
Setting a connection level cache driver:
<code type="php">
$manager = Doctrine_Manager::getInstance();
$conn = $manager->openConnection('pgsql://user:pass@localhost/test');
$conn->setAttribute(Doctrine::ATTR_QUERY_CACHE, $cacheDriver);
</code>
++++ Fine-tuning
In the previous chapter we used global caching attributes. These attributes can be overriden at the query level. You can override the cache driver by calling useQueryCache with a valid cacheDriver. This rarely makes sense for the query cache but is possible:
<code type="php">
$query = new Doctrine_Query();
$query->useQueryCache(new Doctrine_Cache_Apc());
</code>
2007-10-01 12:30:25 +04:00
2007-11-30 23:34:07 +03:00
+++ Result Cache
2007-10-01 12:30:25 +04:00
2007-11-30 23:34:07 +03:00
++++ Using the result cache
2007-10-01 12:30:25 +04:00
2007-11-30 23:34:07 +03:00
You can set a connection or manager level result cache driver by using Doctrine::ATTR_RESULT_CACHE. Setting a connection level cache driver means that all queries executed with this connection use the specified cache driver whereas setting a manager level cache driver means that all connections (unless overridden at connection level) will use the given cache driver.
2007-10-01 12:30:25 +04:00
Setting a manager level cache driver:
<code type="php">
$manager = Doctrine_Manager::getInstance();
2007-11-30 23:34:07 +03:00
$manager->setAttribute(Doctrine::ATTR_RESULT_CACHE, $cacheDriver);
2007-10-01 12:30:25 +04:00
</code>
Setting a connection level cache driver:
<code type="php">
$manager = Doctrine_Manager::getInstance();
$conn = $manager->openConnection('pgsql://user:pass@localhost/test');
2007-11-30 23:34:07 +03:00
$conn->setAttribute(Doctrine::ATTR_RESULT_CACHE, $cacheDriver);
2007-10-01 12:30:25 +04:00
</code>
2007-11-30 23:34:07 +03:00
Usually the cache entries are valid for only some time. You can set global value for how long the cache entries should be considered valid by using Doctrine::ATTR_RESULT_CACHE_LIFESPAN.
2007-10-01 12:30:25 +04:00
<code type="php">
$manager = Doctrine_Manager::getInstance();
// set the lifespan as one hour (60 seconds * 60 minutes = 1 hour = 3600 secs)
2007-11-30 23:34:07 +03:00
$manager->setAttribute(Doctrine::ATTR_RESULT_CACHE_LIFESPAN, 3600);
2007-10-01 12:30:25 +04:00
</code>
Now as we have set a cache driver for use we can make a DQL query to use it:
<code type="php">
$query = new Doctrine_Query();
// fetch blog titles and the number of comments
$query->select('b.title, COUNT(c.id) count')
->from('Blog b')
->leftJoin('b.Comments c')
->limit(10)
2007-11-30 23:34:07 +03:00
->useResultCache(true);
2007-10-01 12:30:25 +04:00
$entries = $query->execute();
</code>
2007-11-30 23:34:07 +03:00
++++ Fine-tuning
2007-10-01 12:30:25 +04:00
In the previous chapter we used global caching attributes. These attributes can be overriden at the query level. You can override the cache driver by calling useCache with a valid cacheDriver:
<code type="php">
$query = new Doctrine_Query();
2007-11-30 23:34:07 +03:00
$query->useResultCache(new Doctrine_Cache_Apc());
2007-10-01 12:30:25 +04:00
</code>
2007-11-30 23:34:07 +03:00
Also you can override the lifespan attribute by calling setResultCacheLifeSpan():
2007-10-01 12:30:25 +04:00
<code type="php">
$query = new Doctrine_Query();
// set the lifespan as half an hour
2007-11-30 23:34:07 +03:00
$query->setResultCacheLifeSpan(60 * 30);
2007-10-01 12:30:25 +04:00
</code>