Просмотр файла esoTalk-1.0.0g4/core/lib/ETCache.class.php

Размер файла: 1.42Kb
<?php
// Copyright 2011 Toby Zerner, Simon Zerner
// This file is part of esoTalk. Please see the included license file for usage information.

/**
 * Caching service. Allows values to be cached and retrieved later.
 *
 * This implementation is a dirty cache, which does not cache anything. This class
 * should be extended to implement real caching behaviour.
 *
 * @package esoTalk
 */

class ETCache {

/**
 * Check if a value exists in the cache.
 *
 * @param string $key The identifier for which value to get.
 * @return bool True if exists, false if not.
 */
public function exists($key)
{
	return false;
}

/**
 * Get a value stored in the cache. Returns false if it does not exist.
 *
 * @param string $key The identifier for which value to get.
 * @return mixed The stored value, or false if not found.
 */
public function get($key)
{
	return false;
}

/**
 * Store a value in the cache. Overwrites any already-existing value.
 *
 * @param string $key The identifier to store the value under.
 * @param mixed $value The value to store.
 * @param int Number of seconds before the cache entry expires. 0 = unlimited.
 * @return bool true on success, false on failure.
 */
public function store($key, $value, $ttl = 0)
{
	return true;
}

/**
 * Remove a value from the cache.
 *
 * @param string $key The identifier for the value to remove.
 * @return bool true on success, false on failure.
 */
public function remove($key)
{
	return true;
}

}