1
0
mirror of synced 2024-12-14 23:26:04 +03:00
doctrine2/manual/new/docs/en/caching.txt

15 lines
654 B
Plaintext
Raw Normal View History

++ Introduction
++ Available options
++ Drivers
+++ Memcache
2007-06-29 02:07:30 +04:00
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.
+++ APC
2007-06-29 02:07:30 +04:00
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.
+++ Sqlite
Sqlite caching backend stores cache records into sqlite database.