I setup memcached fairly recently and have noticed a large number of failed set() and delete() requests, on the order of 10-20 per min. I have 4 1.5 GB servers running on 2 hosts, and am using the MemcachedAggregator PHP wrapper.
<br><br>PHP Notice:&nbsp; Memcache::set() [&lt;a href=&#39;function.set&#39;&gt;function.set&lt;/a&gt;]: marked server &#39;<a href="http://172.28.0.22:11211">172.28.0.22:11211</a>&#39; as failed<br><br clear="all">I do not see this notice for get(), only set() and delete(). When one of these requests fails it can sometimes cause stale data to enter the cache.
<br><br>Here is a stats dump from one of my instances (all have roughly the same stats):<br><br>stats<br>STAT pid 5078<br>STAT uptime 417260<br>STAT time 1181066104<br>STAT version 1.2.1<br>STAT pointer_size 64<br>STAT rusage_user 
806.357415<br>STAT rusage_system 2371.098538<br>STAT curr_items 454841<br>STAT total_items 2729384<br>STAT bytes 1396823505<br>STAT curr_connections 17<br>STAT total_connections 7924721<br>STAT connection_structures 482<br>
STAT cmd_get 26983062<br>STAT cmd_set 2729384<br>STAT get_hits 22592930<br>STAT get_misses 4390132<br>STAT bytes_read 67371856639<br>STAT bytes_written 37621419623<br>STAT limit_maxbytes 1610612736<br>END<br><br>Any idea what might be going wrong? Should I switch to the PECL extension instead of the wrapper class?
<br><br>Thanks,<br>Gil<br>