]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/MemcachePlugin.php
Merge branch 'locshunt2' into 0.9.x
[quix0rs-gnu-social.git] / plugins / MemcachePlugin.php
1 <?php
2 /**
3  * StatusNet - the distributed open-source microblogging tool
4  * Copyright (C) 2009, StatusNet, Inc.
5  *
6  * Plugin to implement cache interface for memcache
7  *
8  * PHP version 5
9  *
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.
14  *
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.
19  *
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/>.
22  *
23  * @category  Cache
24  * @package   StatusNet
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/
29  */
30
31 if (!defined('STATUSNET')) {
32     // This check helps protect against security problems;
33     // your code file can't be executed directly from the web.
34     exit(1);
35 }
36
37 /**
38  * A plugin to use memcache for the cache interface
39  *
40  * This used to be encoded as config-variable options in the core code;
41  * it's now broken out to a separate plugin. The same interface can be
42  * implemented by other plugins.
43  *
44  * @category  Cache
45  * @package   StatusNet
46  * @author    Evan Prodromou <evan@status.net>
47  * @copyright 2009 StatusNet, Inc.
48  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
49  * @link      http://status.net/
50  */
51
52 class MemcachePlugin extends Plugin
53 {
54     private $_conn  = null;
55     public $servers = array('127.0.0.1;11211');
56
57     public $compressThreshold = 20480;
58     public $compressMinSaving = 0.2;
59
60     /**
61      * Initialize the plugin
62      *
63      * Note that onStartCacheGet() may have been called before this!
64      *
65      * @return boolean flag value
66      */
67
68     function onInitializePlugin()
69     {
70         $this->_ensureConn();
71         return true;
72     }
73
74     /**
75      * Get a value associated with a key
76      *
77      * The value should have been set previously.
78      *
79      * @param string &$key   in; Lookup key
80      * @param mixed  &$value out; value associated with key
81      *
82      * @return boolean hook success
83      */
84
85     function onStartCacheGet(&$key, &$value)
86     {
87         $this->_ensureConn();
88         $value = $this->_conn->get($key);
89         Event::handle('EndCacheGet', array($key, &$value));
90         return false;
91     }
92
93     /**
94      * Associate a value with a key
95      *
96      * @param string  &$key     in; Key to use for lookups
97      * @param mixed   &$value   in; Value to associate
98      * @param integer &$flag    in; Flag (passed through to Memcache)
99      * @param integer &$expiry  in; Expiry (passed through to Memcache)
100      * @param boolean &$success out; Whether the set was successful
101      *
102      * @return boolean hook success
103      */
104
105     function onStartCacheSet(&$key, &$value, &$flag, &$expiry, &$success)
106     {
107         $this->_ensureConn();
108         $success = $this->_conn->set($key, $value, $flag, $expiry);
109         Event::handle('EndCacheSet', array($key, $value, $flag,
110                                            $expiry));
111         return false;
112     }
113
114     /**
115      * Delete a value associated with a key
116      *
117      * @param string  &$key     in; Key to lookup
118      * @param boolean &$success out; whether it worked
119      *
120      * @return boolean hook success
121      */
122
123     function onStartCacheDelete(&$key, &$success)
124     {
125         $this->_ensureConn();
126         $success = $this->_conn->delete($key);
127         Event::handle('EndCacheDelete', array($key));
128         return false;
129     }
130
131     /**
132      * Ensure that a connection exists
133      *
134      * Checks the instance $_conn variable and connects
135      * if it is empty.
136      *
137      * @return void
138      */
139
140     private function _ensureConn()
141     {
142         if (empty($this->_conn)) {
143             $this->_conn = new Memcache();
144
145             if (is_array($this->servers)) {
146                 foreach ($this->servers as $server) {
147                     list($host, $port) = explode(';', $server);
148                     if (empty($port)) {
149                         $port = 11211;
150                     }
151
152                     $this->_conn->addServer($host, $port);
153                 }
154             } else {
155                 $this->_conn->addServer($this->servers);
156                 list($host, $port) = explode(';', $this->servers);
157                 if (empty($port)) {
158                     $port = 11211;
159                 }
160                 $this->_conn->addServer($host, $port);
161             }
162
163             // Compress items stored in the cache if they're over threshold in size
164             // (default 2KiB) and the compression would save more than min savings
165             // ratio (default 0.2).
166
167             // Allows the cache to store objects larger than 1MB (if they
168             // compress to less than 1MB), and improves cache memory efficiency.
169
170             $this->_conn->setCompressThreshold($this->compressThreshold,
171                                                $this->compressMinSaving);
172         }
173     }
174 }
175