Okay, I am sorry but I have discovered another issue now that I am using
php-memcache.
>
>
When I cal set, it appears to be doing the operation twice. Here is the
output from memcache with vv:
<31 new auto-negotiating client connection
31: Client using the ascii protocol
<31 set key 0 0 5
>31 STORED
<32 new auto-negotiating client connection
32: Client using the ascii protocol
<32 set key 0 0 5
>32 STORED
This is when I use the following PHP:
$m = new Memcache();
$m->addServer('127.0.0.1', 32000);
$m->set("key", "value");
What is strange is that if I do a simple get, I get:
<33 new auto-negotiating client connection
33: Client using the ascii protocol
<33 get key
>33 sending key key
>33 END
<34 new auto-negotiating client connection
34: Client using the ascii protocol
<34 get key
>34 sending key key
>34 END
Any ideas?
Sorry!
Aaron