Implement APC adapter

This commit is contained in:
Alexander Deruwe
2011-12-12 22:25:17 +01:00
parent 2d7666a413
commit 648bc2b342
4 changed files with 78 additions and 0 deletions

View File

@@ -315,3 +315,26 @@ knp_gaufrette:
create: true
mode: FTP_BINARY
```
## Apc
Adapter for APC.
A non-persistent adapter, use it in the dev environment, in demo sites, ...
### Parameters
* `prefix` The prefix to this filesystem (APC 'namespace', it is recommended that this end in a dot '.') *(required)*
* `ttl` Time to live *(default 0)*
### Example
``` yaml
# app/config/config.yml
knp_gaufrette:
adapters:
foo:
apc:
prefix: APC 'namespace' prefix
ttl: 0
```