3 * StatusNet - the distributed open-source microblogging tool
4 * Copyright (C) 2009, StatusNet, Inc.
6 * Plugin to implement cache interface for XCache variable cache
10 * This program is free software: you can redistribute it and/or modify
11 * it under the terms of the GNU Affero General Public License as published by
12 * the Free Software Foundation, either version 3 of the License, or
13 * (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU Affero General Public License for more details.
20 * You should have received a copy of the GNU Affero General Public License
21 * along with this program. If not, see <http://www.gnu.org/licenses/>.
25 * @author Evan Prodromou <evan@status.net>
26 * @copyright 2009 StatusNet, Inc.
27 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
28 * @link http://status.net/
31 if (!defined('STATUSNET')) {
32 // This check helps protect against security problems;
33 // your code file can't be executed directly from the web.
38 * A plugin to use XCache's variable cache for the cache interface
40 * New plugin interface lets us use alternative cache systems
41 * for caching. This one uses XCache's variable cache.
45 * @author Evan Prodromou <evan@status.net>
46 * @copyright 2009 StatusNet, Inc.
47 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
48 * @link http://status.net/
51 class XCachePlugin extends Plugin
54 * Get a value associated with a key
56 * The value should have been set previously.
58 * @param string &$key in; Lookup key
59 * @param mixed &$value out; value associated with key
61 * @return boolean hook success
64 function onStartCacheGet(&$key, &$value)
66 if (!xcache_isset($key)) {
69 $value = xcache_get($key);
70 $value = unserialize($value);
72 Event::handle('EndCacheGet', array($key, &$value));
77 * Associate a value with a key
79 * @param string &$key in; Key to use for lookups
80 * @param mixed &$value in; Value to associate
81 * @param integer &$flag in; Flag (passed through to Memcache)
82 * @param integer &$expiry in; Expiry (passed through to Memcache)
83 * @param boolean &$success out; Whether the set was successful
85 * @return boolean hook success
88 function onStartCacheSet(&$key, &$value, &$flag, &$expiry, &$success)
90 $success = xcache_set($key, serialize($value));
92 Event::handle('EndCacheSet', array($key, $value, $flag,
98 * Delete a value associated with a key
100 * @param string &$key in; Key to lookup
101 * @param boolean &$success out; whether it worked
103 * @return boolean hook success
106 function onStartCacheDelete(&$key, &$success)
108 $success = xcache_unset($key);
109 Event::handle('EndCacheDelete', array($key));
113 function onPluginVersion(&$versions)
115 $versions[] = array('name' => 'XCache',
116 'version' => STATUSNET_VERSION,
117 'author' => 'Craig Andrews',
118 'homepage' => 'http://status.net/wiki/Plugin:XCache',
120 _m('Use the <a href="http://xcache.lighttpd.net/">XCache</a> variable cache to cache query results.'));