Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Possible Duplicate:
Using Memcache vs Memcached with PHP

I'm using AWS Elasticache and I've installed there php module which I believe is an extension of spymemcached. The catch is I believe I'm running memcache and not memcached. This is the code to create the object:

$memcached = new Memcached();
$memcached->setOption(Memcached::OPT_CLIENT_MODE, Memcached::DYNAMIC_CLIENT_MODE);
$memcached->addServer('goneglobalcache-1a.expalp.cfg.apse1.cache.amazonaws.com', 11211);
$memcached->set('key', 'value', 60);

When I go to write to the cache I can't use compression settings and was advised the problem is I'm using a memcache client.

Is there a way to tell which type of client I'm using and a way to switch?

share|improve this question
How would one switch from memcache to memcached? They're not the same thing. – Jack Jan 27 at 12:09

marked as duplicate by hakre, tereško, brian d foy, ElYusubov, RolandoMySQLDBA Jan 28 at 0:50

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

2 Answers

up vote 1 down vote accepted

If you want to use Memcache, you need to install (compile) that PHP extension.

$memcache = new Memcache;
$memcache->set('key', 'value', MEMCACHE::COMPRESSED, 60);

But note that Memcache compression uses zlib which need to be installed.

share|improve this answer

There is only one Memcached server in the world. But there are two PHP client libraries, one named "Memcache", the other "Memcached".

There are differences: Using Memcache vs Memcached with PHP

Which one you'll need should be documented in the software's requirements.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.