znframework/package-cache

ZN Framework Cache

7.0.1 2022-12-28 22:49 UTC

This package is auto-updated.

Last update: 2024-10-29 02:57:49 UTC


README

ZN Framework Cache Package

Follow the steps below for installation and use.

Installation

You only need to run the following code for the installation.

composer require znframework/package-cache

Documentation

Click for documentation of your library.

Example Usage

Basic level usage is shown below.

<?php require 'vendor/autoload.php';

ZN\ZN::run();

Cache::insert('example', 'Example Data');

echo Cache::select('example');