mirror of
https://github.com/Mibew/handlebars.php.git
synced 2025-04-05 15:17:06 +03:00
67 lines
1.5 KiB
PHP
Executable File
67 lines
1.5 KiB
PHP
Executable File
<?php
|
|
/**
|
|
* This file is part of Handlebars-php
|
|
* Base on mustache-php https://github.com/bobthecow/mustache.php
|
|
*
|
|
* PHP version 5.3
|
|
*
|
|
* @category Xamin
|
|
* @package Handlebars
|
|
* @author fzerorubigd <fzerorubigd@gmail.com>
|
|
* @author Behrooz Shabani <everplays@gmail.com>
|
|
* @copyright 2012 (c) ParsPooyesh Co
|
|
* @copyright 2013 (c) Behrooz Shabani
|
|
* @license MIT <http://opensource.org/licenses/MIT>
|
|
* @version GIT: $Id$
|
|
* @link http://xamin.ir
|
|
*/
|
|
|
|
namespace Handlebars;
|
|
|
|
/**
|
|
* Cache interface
|
|
* Base cache interface, Note that Handlebars.php never call for remove.
|
|
* Driver should take care of expiered cache.
|
|
*
|
|
* @category Xamin
|
|
* @package Handlebars
|
|
* @author fzerorubigd <fzerorubigd@gmail.com>
|
|
* @copyright 2010-2012 (c) Justin Hileman
|
|
* @copyright 2012 (c) ParsPooyesh Co
|
|
* @license MIT <http://opensource.org/licenses/MIT>
|
|
* @version Release: @package_version@
|
|
* @link http://xamin.ir
|
|
*/
|
|
|
|
interface Cache
|
|
{
|
|
|
|
/**
|
|
* Get cache for $name if exist.
|
|
*
|
|
* @param string $name Cache id
|
|
*
|
|
* @return mixed data on hit, boolean false on cache not found
|
|
*/
|
|
public function get($name);
|
|
|
|
/**
|
|
* Set a cache
|
|
*
|
|
* @param string $name cache id
|
|
* @param mixed $value data to store
|
|
*
|
|
* @return void
|
|
*/
|
|
public function set($name, $value);
|
|
|
|
/**
|
|
* Remove cache
|
|
*
|
|
* @param string $name Cache id
|
|
*
|
|
* @return void
|
|
*/
|
|
public function remove($name);
|
|
|
|
} |