mouf/utils.cache.cache-interface dependents (10) Order by: name | downloads Show: all | require | require-dev

  • PHP

    mouf/utils.cache.apc-cache

    This package contains a cache mechanism that relies on the APC caching system. For this cache to work, the APC Pecl package must be enabled.

  • PHP

    mouf/utils.cache.file-cache

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

  • PHP

    mouf/utils.cache.in-memory-cache

    This package contains the most basic cache mechanism. It stores cache items in an array. It means the cache is flushed as soon as the script returns. It is very basic, but also very fast. You will usually use this mechanism with another one just behind.

  • PHP

    mouf/utils.cache.memcache-cache

    This package contains a cache mechanism that relies on the Memcached database. For this cache to work, the memcache Pecl package must be enabled.

  • PHP

    mouf/utils.cache.memcached-cache

    This package contains a cache mechanism that relies on the Memcached database. For this cache to work, the memcached Pecl package must be enabled.

  • PHP

    mouf/utils.cache.no-cache

    This package contains a cache mechanism that... does not cache anything. This is useful if another component requires a cache mechanism and if you don't want to provide any (for development purpose...).

  • PHP

    mouf/utils.cache.purge-ui

    This package contains a user interface that will add a 'Purge cache' button to Mouf, allowing you to purge any PSR-6, PSR-16, Doctrine and Mouf cache easily.

  • PHP

    mouf/utils.cache.redis-cache

    This package contains a cache mechanism that uses Redis to cache data.

  • PHP

    mouf/utils.cache.session-cache

    This package contains a cache mechanism that relies on the session of the user. Therefore, the cache is a bit special, since it is kept for the duration of the session, and is only accessible by the current user. The session has to be started (using session_start()).

  • PHP

    mouf/utils.common.doctrine-cache-wrapper

    Provide an install script for a Doctrine's Cache in Mouf Framework.