|
MediaWiki
REL1_24
|
This is the PHP client for memcached - a distributed memory cache daemon. More...


Public Member Functions | |
| __construct ($args) | |
| Memcache initializer. | |
| _close_sock ($sock) | |
| Close the specified socket. | |
| _connect_sock (&$sock, $host) | |
| Connects $sock to $host, timing out after $timeout. | |
| _dead_host ($host) | |
| _dead_sock ($sock) | |
| Marks a host as dead until 30-40 seconds in the future. | |
| _debugprint ($text) | |
| _error_log ($text) | |
| _fgets ($sock) | |
| Read a line from a stream. | |
| _flush_read_buffer ($f) | |
| Flush the read buffer of a stream. | |
| _fread ($sock, $len) | |
| Read the specified number of bytes from a stream. | |
| _fwrite ($sock, $buf) | |
| Write to a stream. | |
| _handle_error ($sock, $msg) | |
| Handle an I/O error. | |
| _hashfunc ($key) | |
| Creates a hash integer based on the $key. | |
| _incrdecr ($cmd, $key, $amt=1) | |
| Perform increment/decriment on $key. | |
| _load_items ($sock, &$ret, &$casToken=null) | |
| Load items into $ret from $sock. | |
| _set ($cmd, $key, $val, $exp, $casToken=null) | |
| Performs the requested storage operation to the memcache server. | |
| add ($key, $val, $exp=0) | |
| Adds a key/value to the memcache server if one isn't already set with that key. | |
| cas ($casToken, $key, $value, $exp=0) | |
| Sets a key to a given value in the memcache if the current value still corresponds to a known, given value. | |
| decr ($key, $amt=1) | |
| Decrease a value stored on the memcache server. | |
| delete ($key, $time=0) | |
| Deletes a key from the server, optionally after $time. | |
| disconnect_all () | |
| Disconnects all connected sockets. | |
| enable_compress ($enable) | |
| Enable / Disable compression. | |
| forget_dead_hosts () | |
| Forget about all of the dead hosts. | |
| get ($key, &$casToken=null) | |
| Retrieves the value associated with the key from the memcache server. | |
| get_multi ($keys) | |
| Get multiple keys from the server(s) | |
| get_sock ($key) | |
| get_sock | |
| incr ($key, $amt=1) | |
| Increments $key (optionally) by $amt. | |
| lock ($key, $timeout=0) | |
| replace ($key, $value, $exp=0) | |
| Overwrites an existing value for key; only works if key is already set. | |
| run_command ($sock, $cmd) | |
| Passes through $cmd to the memcache server connected by $sock; returns output as an array (null array if no output) | |
| set ($key, $value, $exp=0) | |
| Unconditionally sets a key to a given value in the memcache. | |
| set_compress_threshold ($thresh) | |
| Sets the compression threshold. | |
| set_debug ($dbg) | |
| Sets the debug flag. | |
| set_servers ($list) | |
| Sets the server list to distribute key gets and puts between. | |
| set_timeout ($seconds, $microseconds) | |
| Sets the timeout for new connections. | |
| sock_to_host ($host) | |
| Returns the socket for the host. | |
| unlock ($key) | |
Public Attributes | |
| int | $_active |
| # of total servers we have | |
| int | $_bucketcount |
| Total # of bit buckets we have. | |
| array | $_buckets |
| Our bit buckets. | |
| array | $_cache_sock |
| Cached Sockets that are connected. | |
| bool | $_compress_enable |
| Do we want to use compression? | |
| int | $_compress_threshold |
| At how many bytes should we compress? | |
| $_connect_attempts | |
| Number of connection attempts for each server. | |
| $_connect_timeout | |
| Connect timeout in seconds. | |
| bool | $_debug |
| Current debug status; 0 - none to 9 - profiling. | |
| bool | $_have_zlib |
| Is compression available? | |
| array | $_host_dead |
| Dead hosts, assoc array, 'host'=>'unixtime when ok to check again'. | |
| bool | $_persistent |
| Are we using persistent links? | |
| array | $_servers |
| Array containing ip:port or array(ip:port, weight) | |
| string | $_single_sock |
| If only using one server; contains ip:port to connect to. | |
| int | $_timeout_microseconds |
| Stream timeout in microseconds. | |
| int | $_timeout_seconds |
| Stream timeout in seconds. | |
| array | $stats |
| Command statistics. | |
| const | COMPRESSED = 2 |
| Flag: indicates data is compressed. | |
| const | COMPRESSION_SAVINGS = 0.20 |
| Minimum savings to store data compressed. | |
| const | SERIALIZED = 1 |
| Flag: indicates data is serialized. | |
This is the PHP client for memcached - a distributed memory cache daemon.
More information is available at http://www.danga.com/memcached/
Usage example:
require_once 'memcached.php';
$mc = new MWMemcached(array( 'servers' => array('127.0.0.1:10000', array('192.0.0.1:10010', 2), '127.0.0.1:10020'), 'debug' => false, 'compress_threshold' => 10240, 'persistent' => true));
$mc->add( 'key', array( 'some', 'array' ) ); $mc->replace( 'key', 'some random string' ); $val = $mc->get( 'key' );
Definition at line 77 of file MemcachedClient.php.
| MWMemcached::__construct | ( | $ | args | ) |
Memcache initializer.
| array | $args | Associative array of settings |
Definition at line 234 of file MemcachedClient.php.
References array(), and set_servers().
| MWMemcached::_close_sock | ( | $ | sock | ) |
Close the specified socket.
| string | $sock | Socket to close |
Definition at line 705 of file MemcachedClient.php.
| MWMemcached::_connect_sock | ( | &$ | sock, |
| $ | host | ||
| ) |
Connects $sock to $host, timing out after $timeout.
| int | $sock | Socket to connect |
| string | $host | Host:IP to connect to |
Definition at line 723 of file MemcachedClient.php.
| MWMemcached::_dead_host | ( | $ | host | ) |
| string | $host |
Definition at line 772 of file MemcachedClient.php.
| MWMemcached::_dead_sock | ( | $ | sock | ) |
Marks a host as dead until 30-40 seconds in the future.
| string | $sock | Socket to mark as dead |
Definition at line 764 of file MemcachedClient.php.
| MWMemcached::_debugprint | ( | $ | text | ) |
| string | $text |
Definition at line 1097 of file MemcachedClient.php.
| MWMemcached::_error_log | ( | $ | text | ) |
| string | $text |
Definition at line 1104 of file MemcachedClient.php.
| MWMemcached::_fgets | ( | $ | sock | ) |
Read a line from a stream.
If there is an error, mark the socket dead. The
line ending is stripped from the response.
| Resource | $sock | The socket |
Definition at line 1194 of file MemcachedClient.php.
Flush the read buffer of a stream.
| Resource | $f |
Definition at line 1223 of file MemcachedClient.php.
References $result.
| MWMemcached::_fread | ( | $ | sock, |
| $ | len | ||
| ) |
Read the specified number of bytes from a stream.
If there is an error, mark the socket dead.
| Resource | $sock | The socket |
| int | $len | The number of bytes to read |
Definition at line 1163 of file MemcachedClient.php.
| MWMemcached::_fwrite | ( | $ | sock, |
| $ | buf | ||
| ) |
Write to a stream.
If there is an error, mark the socket dead.
| Resource | $sock | The socket |
| string | $buf | The string to write |
Definition at line 1115 of file MemcachedClient.php.
References wfDebugLog().
| MWMemcached::_handle_error | ( | $ | sock, |
| $ | msg | ||
| ) |
Handle an I/O error.
Mark the socket dead and log an error.
| Resource | $sock | |
| string | $msg |
Definition at line 1142 of file MemcachedClient.php.
| MWMemcached::_hashfunc | ( | $ | key | ) |
Creates a hash integer based on the $key.
| string | $key | Key to hash |
Definition at line 840 of file MemcachedClient.php.
| MWMemcached::_incrdecr | ( | $ | cmd, |
| $ | key, | ||
| $ | amt = 1 |
||
| ) |
Perform increment/decriment on $key.
| string | $cmd | Command to perform |
| string | array | $key | Key to perform it on |
| int | $amt | Amount to adjust |
Definition at line 860 of file MemcachedClient.php.
Referenced by delete().
| MWMemcached::_load_items | ( | $ | sock, |
| &$ | ret, | ||
| &$ | casToken = null |
||
| ) |
Load items into $ret from $sock.
| Resource | $sock | Socket to read from |
| array | $ret | returned values |
| float | $casToken | [optional] |
Definition at line 901 of file MemcachedClient.php.
| MWMemcached::_set | ( | $ | cmd, |
| $ | key, | ||
| $ | val, | ||
| $ | exp, | ||
| $ | casToken = null |
||
| ) |
Performs the requested storage operation to the memcache server.
| string | $cmd | Command to perform |
| string | $key | Key to act on |
| mixed | $val | What we need to store |
| int | $exp | (optional) Expiration time. This can be a number of seconds to cache for (up to 30 days inclusive). Any timespans of 30 days + 1 second or longer must be the timestamp of the time at which the mapping should expire. It is safe to use timestamps in all cases, regardless of exipration eg: strtotime("+3 hour") |
| float | $casToken | [optional] |
Definition at line 993 of file MemcachedClient.php.
| MWMemcached::add | ( | $ | key, |
| $ | val, | ||
| $ | exp = 0 |
||
| ) |
Adds a key/value to the memcache server if one isn't already set with that key.
| string | $key | Key to set with data |
| mixed | $val | Value to store |
| int | $exp | (optional) Expiration time. This can be a number of seconds to cache for (up to 30 days inclusive). Any timespans of 30 days + 1 second or longer must be the timestamp of the time at which the mapping should expire. It is safe to use timestamps in all cases, regardless of expiration eg: strtotime("+3 hour") |
Definition at line 270 of file MemcachedClient.php.
| MWMemcached::cas | ( | $ | casToken, |
| $ | key, | ||
| $ | value, | ||
| $ | exp = 0 |
||
| ) |
Sets a key to a given value in the memcache if the current value still corresponds to a known, given value.
Returns true if set successfully.
| float | $casToken | Current known value |
| string | $key | Key to set value as |
| mixed | $value | Value to set |
| int | $exp | (optional) Expiration time. This can be a number of seconds to cache for (up to 30 days inclusive). Any timespans of 30 days + 1 second or longer must be the timestamp of the time at which the mapping should expire. It is safe to use timestamps in all cases, regardless of exipration eg: strtotime("+3 hour") |
Definition at line 630 of file MemcachedClient.php.
| MWMemcached::decr | ( | $ | key, |
| $ | amt = 1 |
||
| ) |
Decrease a value stored on the memcache server.
| string | $key | Key to decrease |
| int | $amt | (optional) amount to decrease |
Definition at line 285 of file MemcachedClient.php.
| MWMemcached::delete | ( | $ | key, |
| $ | time = 0 |
||
| ) |
Deletes a key from the server, optionally after $time.
| string | $key | Key to delete |
| int | $time | (optional) how long to wait before deleting |
Definition at line 300 of file MemcachedClient.php.
References $key, and _incrdecr().
Disconnects all connected sockets.
Definition at line 359 of file MemcachedClient.php.
| MWMemcached::enable_compress | ( | $ | enable | ) |
Enable / Disable compression.
| bool | $enable | True to enable, false to disable |
Definition at line 375 of file MemcachedClient.php.
Forget about all of the dead hosts.
Definition at line 385 of file MemcachedClient.php.
| MWMemcached::get | ( | $ | key, |
| &$ | casToken = null |
||
| ) |
Retrieves the value associated with the key from the memcache server.
| array | string | $key | key to retrieve |
| float | $casToken | [optional] |
Definition at line 400 of file MemcachedClient.php.
References array().
| MWMemcached::get_multi | ( | $ | keys | ) |
Get multiple keys from the server(s)
| array | $keys | Keys to retrieve |
Definition at line 465 of file MemcachedClient.php.
| MWMemcached::get_sock | ( | $ | key | ) |
get_sock
| string | $key | Key to retrieve value for; |
Definition at line 791 of file MemcachedClient.php.
| MWMemcached::incr | ( | $ | key, |
| $ | amt = 1 |
||
| ) |
Increments $key (optionally) by $amt.
| string | $key | Key to increment |
| int | $amt | (optional) amount to increment |
Definition at line 532 of file MemcachedClient.php.
| MWMemcached::lock | ( | $ | key, |
| $ | timeout = 0 |
||
| ) |
| MWMemcached::replace | ( | $ | key, |
| $ | value, | ||
| $ | exp = 0 |
||
| ) |
Overwrites an existing value for key; only works if key is already set.
| string | $key | Key to set value as |
| mixed | $value | Value to store |
| int | $exp | (optional) Expiration time. This can be a number of seconds to cache for (up to 30 days inclusive). Any timespans of 30 days + 1 second or longer must be the timestamp of the time at which the mapping should expire. It is safe to use timestamps in all cases, regardless of exipration eg: strtotime("+3 hour") |
Definition at line 552 of file MemcachedClient.php.
| MWMemcached::run_command | ( | $ | sock, |
| $ | cmd | ||
| ) |
Passes through $cmd to the memcache server connected by $sock; returns output as an array (null array if no output)
| Resource | $sock | Socket to send command on |
| string | $cmd | Command to run |
Definition at line 568 of file MemcachedClient.php.
| MWMemcached::set | ( | $ | key, |
| $ | value, | ||
| $ | exp = 0 |
||
| ) |
Unconditionally sets a key to a given value in the memcache.
Returns true if set successfully.
| string | $key | Key to set value as |
| mixed | $value | Value to set |
| int | $exp | (optional) Expiration time. This can be a number of seconds to cache for (up to 30 days inclusive). Any timespans of 30 days + 1 second or longer must be the timestamp of the time at which the mapping should expire. It is safe to use timestamps in all cases, regardless of exipration eg: strtotime("+3 hour") |
Definition at line 608 of file MemcachedClient.php.
| MWMemcached::set_compress_threshold | ( | $ | thresh | ) |
Sets the compression threshold.
| int | $thresh | Threshold to compress if larger than |
Definition at line 642 of file MemcachedClient.php.
| MWMemcached::set_debug | ( | $ | dbg | ) |
Sets the debug flag.
| bool | $dbg | True for debugging, false otherwise |
Definition at line 656 of file MemcachedClient.php.
| MWMemcached::set_servers | ( | $ | list | ) |
Sets the server list to distribute key gets and puts between.
| array | $list | Array of servers to connect to |
Definition at line 670 of file MemcachedClient.php.
Referenced by __construct().
| MWMemcached::set_timeout | ( | $ | seconds, |
| $ | microseconds | ||
| ) |
Sets the timeout for new connections.
| int | $seconds | Number of seconds |
| int | $microseconds | Number of microseconds |
Definition at line 688 of file MemcachedClient.php.
| MWMemcached::sock_to_host | ( | $ | host | ) |
Returns the socket for the host.
| string | $host | Host:IP to get socket for |
Definition at line 1068 of file MemcachedClient.php.
| MWMemcached::unlock | ( | $ | key | ) |
| int MWMemcached::$_active |
| int MWMemcached::$_bucketcount |
| array MWMemcached::$_buckets |
| array MWMemcached::$_cache_sock |
Cached Sockets that are connected.
Definition at line 118 of file MemcachedClient.php.
| bool MWMemcached::$_compress_enable |
| int MWMemcached::$_compress_threshold |
At how many bytes should we compress?
Definition at line 153 of file MemcachedClient.php.
| MWMemcached::$_connect_attempts |
Number of connection attempts for each server.
Definition at line 219 of file MemcachedClient.php.
| MWMemcached::$_connect_timeout |
Connect timeout in seconds.
Definition at line 214 of file MemcachedClient.php.
| bool MWMemcached::$_debug |
Current debug status; 0 - none to 9 - profiling.
Definition at line 125 of file MemcachedClient.php.
| bool MWMemcached::$_have_zlib |
| array MWMemcached::$_host_dead |
Dead hosts, assoc array, 'host'=>'unixtime when ok to check again'.
Definition at line 132 of file MemcachedClient.php.
| bool MWMemcached::$_persistent |
| array MWMemcached::$_servers |
Array containing ip:port or array(ip:port, weight)
Definition at line 174 of file MemcachedClient.php.
| string MWMemcached::$_single_sock |
If only using one server; contains ip:port to connect to.
Definition at line 167 of file MemcachedClient.php.
| int MWMemcached::$_timeout_microseconds |
| int MWMemcached::$_timeout_seconds |
Stream timeout in seconds.
Applies for example to fread()
Definition at line 202 of file MemcachedClient.php.
| array MWMemcached::$stats |
| const MWMemcached::COMPRESSED = 2 |
Flag: indicates data is compressed.
Definition at line 92 of file MemcachedClient.php.
| const MWMemcached::COMPRESSION_SAVINGS = 0.20 |
Minimum savings to store data compressed.
Definition at line 99 of file MemcachedClient.php.
| const MWMemcached::SERIALIZED = 1 |
Flag: indicates data is serialized.
Definition at line 87 of file MemcachedClient.php.