source: trunk/www.guidonia.net/wp/wp-content/plugins/tubepress/classes/org/tubepress/cache/CacheService.class.php@ 44

Last change on this file since 44 was 44, checked in by luciano, 14 years ago
File size: 1.6 KB
Line 
1<?php
2/**
3 * Copyright 2006, 2007, 2008, 2009 Eric D. Hough (http://ehough.com)
4 *
5 * This file is part of TubePress (http://tubepress.org)
6 *
7 * TubePress is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * TubePress is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with TubePress. If not, see <http://www.gnu.org/licenses/>.
19 *
20 */
21
22/**
23 * String cache for TubePress
24 */
25interface org_tubepress_cache_CacheService
26{
27 /**
28 * Get a value from the cache
29 *
30 * @param string $key The key of the data to retrieve
31 *
32 * @return string The data at the given key, or null if not there
33 */
34 public function get($key);
35
36 /**
37 * Determine if the cache has data for a certain key
38 *
39 * @param string $key The key for which to look
40 *
41 * @return boolean True if the cache has the data, false otherwise
42 */
43 public function has($key);
44
45 /**
46 * Save the given data with the given key
47 *
48 * @param string $key The key at which to save the data
49 * @param string $data The data to save at the key
50 *
51 * @return void
52 */
53 public function save($key, $data);
54}
Note: See TracBrowser for help on using the repository browser.