mouf/utils.cache.file-cache

This package contains a cache mechanism that relies on temporary files.

Installs: 377 114

Dependents: 2

Suggesters: 0

Security: 0

Stars: 0

Watchers: 5

Forks: 4

Open Issues: 0

Type:mouf-library

pkg:composer/mouf/utils.cache.file-cache

v2.2.1 2016-09-22 08:32 UTC

This package is auto-updated.

Last update: 2025-10-15 07:14:42 UTC


README

Latest Stable Version Total Downloads Latest Unstable Version License Scrutinizer Code Quality Build Status Coverage Status

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 about var_exporting your cache keys.

To learn more about the cache interface, please see the cache system documentation.