High-speed caching with Memcached.
10K+
22 Tools
Version 4.43 or later needs to be installed to add the server automatically
Tools
| Name | Description |
|---|---|
cache_add | Add a value to the cache only if the key doesn't exist. |
cache_append | Append a string to an existing value. |
cache_cas | Set a value using CAS (Check And Set). |
cache_decr | Decrement a counter in the cache. |
cache_delete | Delete a value from the cache. |
cache_delete_many | Delete multiple values from the cache. |
cache_delete_multi | Delete multiple values from the cache (alias for delete_many). |
cache_flush_all | Flush all cache entries. |
cache_get | Get a value from the cache. |
cache_get_many | Get multiple values from the cache. |
cache_get_multi | Get multiple values from the cache (alias for get_many). |
cache_gets | Get a value and its CAS token from the cache. |
cache_incr | Increment a counter in the cache. |
cache_prepend | Prepend a string to an existing value. |
cache_quit | Close the connection to the cache server. Returns: Success message or error message |
cache_replace | Replace a value in the cache only if the key exists. |
cache_set | Set a value in the cache. |
cache_set_many | Set multiple values in the cache. |
cache_set_multi | Set multiple values in the cache (alias for set_many). |
cache_stats | Get cache statistics. |
cache_touch | Update the expiration time for a key. |
cache_version | Get the version of the cache server. Returns: Version string or error message |