Luminova Framework

Cache System

Table of Contents

  1. Cache Implementation Examples

    This documentation provides a clear and concise guide on implementing caching, covering initialization, storing, and retrieving content for both Memcached and File System cache.

  2. Caching Using the File System Storage

    File cache, offers an efficient way to store reusable data in the file system, reducing the need for frequent database operations or third-party API calls.

  3. Memcached Caching System

    The MemoryCache is an enhanced extension of Memcached, designed to simplify caching operations by leveraging local and remote servers to reduce the need for repetitive database queries.

  4. PSR-Compliant Cache Pool Implementation

    Cache Pool is a caching adapter that implements the PSR CacheItemPoolInterface. It provides various methods for effectively managing cache items in your applications.

  5. PSR-Compliant Simple Cache Implementation

    The PSR simple cache interface defines the most basic operations for cache entries, which entails basic reading, writing, and deleting individual cache items.

  6. Caching and Serving Static View Content

    Page content caching and static content serving. This technique allow page content to be cached and reused when next visitors visit the same URL which promotes performance