ADOdb

Database Abstraction Layer for PHP

User Tools

Site Tools


v5:userguide:memcached

This is an old revision of the document!


Memcached Setup

There are 2 pear modules for connection to a Memcached server, the older PEAR Memcache library and the newer PEAR Memcached library.

  • Windows support is only available for the older Memcache library.
  • ADOdb has only been tested against the older library

Description

This section describes connection to an already configured Memcache server. Information about installation and configuration of Memcached servers can be found here.

The Memcache Library

Usage

$db = NewADOConnection($driver='mysqli');
/*
* Enable memcache
*/
$db->memCache = true;
/*
* Add one or more servers, for use in distributed systems
*/
$db->memCacheHost = array('192.168.0.78', '192.168.0.79', '192.168.0.80'); 
/*
* Optionally add the server port if it differs from the default
*/
$db->memCachePort = 11211;
/*
* Use 'true' to store the item compressed (uses zlib)
*/
$db->memCacheCompress = false; 
 
/*
* We connect to the database, not the memcache server
*/
$db->Connect('localhost','mysql-user','mysql-password','employees');
 
/*
* look for a cached query with a life of 2400 seconds
*/
$sql = 'SELECT code,description FROM xref_table';
$db->cacheExecute(2400,$sql);

Using Debug Mode

The size of query results that can be cached by the memcached server is limited by server configuration. The default is quite small. If the query is too large, and debugging is enabled, then an error is displayed.

3849805e4e026b9e7c485999a24a95c6 cache failure: Item with such key doesn't exists on the memcached server.
(this is a notice and not an error)
-----<hr>

(mysqli): SELECT * FROM employees 

-----<hr>
Notice: MemcachePool::set(): Server 192.168.0.78 (tcp 11211, udp 0) failed with:
SERVER_ERROR object too large for cache
(3) in C:\dev\github\mssqlnative-fixes\adodb-memcache.lib.inc.php on line 94
Failed to save data at the memcached server!

Cache write error

PHP Notice:  MemcachePool::set(): Server 192.168.0.78 (tcp 11211, udp 0) failed with:
SERVER_ERROR object too large for cache (3) 
in C:\dev\github\mssqlnative-fixes\adodb-memcache.lib.inc.php on line 94

ADOdb currently has no mechanism for splitting large queries into smaller chunks.

v5/userguide/memcached.1452998350.txt.gz · Last modified: 2017/04/21 11:39 (external edit)