From e66aba26c4157aa560ceb30d8dd79831e483e733 Mon Sep 17 00:00:00 2001 From: Adam Dinwoodie Date: Wed, 4 Jun 2025 21:22:04 +0100 Subject: [PATCH 1/2] Correct cache eviction policy Caches are evicted based on access time, not creation time. --- data/reusables/actions/cache-eviction-policy.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/reusables/actions/cache-eviction-policy.md b/data/reusables/actions/cache-eviction-policy.md index 0e98d854d46d..a4a2a0878253 100644 --- a/data/reusables/actions/cache-eviction-policy.md +++ b/data/reusables/actions/cache-eviction-policy.md @@ -1 +1 @@ -Once a repository has reached its maximum cache storage, the cache eviction policy will create space by deleting the oldest caches in the repository. +Once a repository has reached its maximum cache storage, the cache eviction policy will create space by deleting the caches that have been least recently used. From 20849b83914243a33faa5f383d93ef44221a8599 Mon Sep 17 00:00:00 2001 From: Sharra-writes Date: Tue, 10 Jun 2025 20:01:42 -0700 Subject: [PATCH 2/2] Update data/reusables/actions/cache-eviction-policy.md --- data/reusables/actions/cache-eviction-policy.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/reusables/actions/cache-eviction-policy.md b/data/reusables/actions/cache-eviction-policy.md index a4a2a0878253..c0419cd82264 100644 --- a/data/reusables/actions/cache-eviction-policy.md +++ b/data/reusables/actions/cache-eviction-policy.md @@ -1 +1 @@ -Once a repository has reached its maximum cache storage, the cache eviction policy will create space by deleting the caches that have been least recently used. +Once a repository has reached its maximum cache storage, the cache eviction policy will create space by deleting the caches in order of last access date, from oldest to most recent.