Some body say this cmd will invalidate all item in the memcached server.<br>But why the curr_item STAT not set to zero?<br>And I read the source code:<br>in the do_item_flush_expired function,it give a condition:<br><br> if (iter->time >=
settings.oldest_live) {<br> next = iter->next;<br> if ((iter->it_flags & ITEM_SLABBED) == 0) {<br> do_item_unlink(iter);<br> }<br> } else {
<br> /* We've hit the first old item. Continue to the next queue. */<br> break;<br> }<br><br>settings.oldest_live = currenttime - 1<br>can iter->time >= settings.oldest_live
be true??<br><br><br>