summaryrefslogtreecommitdiff
path: root/items.h
diff options
context:
space:
mode:
authordormando <dormando@rydia.net>2017-01-08 01:48:39 -0800
committerdormando <dormando@rydia.net>2017-01-22 19:57:15 -0800
commitfa8b42560aa948822514ed6560d8448623049297 (patch)
treea8bab256803f79b2cb8f53bd579ff2469dd885fd /items.h
parente1d9af2bcf853e1179a9ee2ac526bea435c50930 (diff)
downloadmemcached-fa8b42560aa948822514ed6560d8448623049297.tar.gz
NOEXP_LRU is now TEMP_LRU
Confident the other feature was never used; and if someone wants it, it's easy to restore by allowing exptime of 0 to go into TEMP_LRU. This could possibly become a default, or at least recommended.
Diffstat (limited to 'items.h')
-rw-r--r--items.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/items.h b/items.h
index 8f0f78a..1487801 100644
--- a/items.h
+++ b/items.h
@@ -1,7 +1,7 @@
#define HOT_LRU 0
#define WARM_LRU 64
#define COLD_LRU 128
-#define NOEXP_LRU 192
+#define TEMP_LRU 192
#define CLEAR_LRU(id) (id & ~(3<<6))