mouf / utils.cache.file-cache
This package contains a cache mechanism that relies on temporary files.
Installs: 372 849
Dependents: 2
Suggesters: 0
Security: 0
Stars: 0
Watchers: 7
Forks: 4
Open Issues: 0
Type:mouf-library
Requires
- php: >=5.3.0
- mouf/utils.cache.cache-interface: ~2.0
- mouf/utils.constants.secret: ~1.0
- psr/log: ~1.0
README
Mouf's file cache service
This package contains 2 implementations of Mouf's CacheInterface that stores the cache in files on the server's hard drive.
FileCache
is a service that stores cache keys in files. The value is serialized.PhpFileCache
is a more efficient service that stores cache keys in executable PHP files. You should prefer this implementation unless you have security concerns aboutvar_export
ing your cache keys.
To learn more about the cache interface, please see the cache system documentation.