summaryrefslogtreecommitdiff
path: root/src/cache.c
diff options
context:
space:
mode:
authorVicent Marti <tanoku@gmail.com>2013-04-22 17:04:52 +0200
committerVicent Marti <tanoku@gmail.com>2013-04-22 17:04:52 +0200
commitd87715926049390a2417a2476742114ec966686a (patch)
treef5cf7daf3913578f57076c2efc94bfd1f728068c /src/cache.c
parentcf9709b64eb49d5a0ee1181b80c950e518fb45b0 (diff)
downloadlibgit2-d87715926049390a2417a2476742114ec966686a.tar.gz
cache: Max cache size, and evict when the cache fills upvmg/new-cache
Diffstat (limited to 'src/cache.c')
-rw-r--r--src/cache.c25
1 files changed, 18 insertions, 7 deletions
diff --git a/src/cache.c b/src/cache.c
index c51be895e..ca122fb77 100644
--- a/src/cache.c
+++ b/src/cache.c
@@ -18,6 +18,7 @@
GIT__USE_OIDMAP
bool git_cache__enabled = true;
+size_t git_cache__max_storage = (4 * 1024 * 1024);
static size_t git_cache__max_object_size[8] = {
0, /* GIT_OBJ__EXT1 */
@@ -70,19 +71,25 @@ int git_cache_init(git_cache *cache)
return 0;
}
-void git_cache_clear(git_cache *cache)
+/* called with lock */
+static void clear_cache(git_cache *cache)
{
git_cached_obj *evict = NULL;
- if (git_mutex_lock(&cache->lock) < 0)
- return;
-
kh_foreach_value(cache->map, evict, {
git_cached_obj_decref(evict);
});
kh_clear(oid, cache->map);
cache->used_memory = 0;
+}
+
+void git_cache_clear(git_cache *cache)
+{
+ if (git_mutex_lock(&cache->lock) < 0)
+ return;
+
+ clear_cache(cache);
git_mutex_unlock(&cache->lock);
}
@@ -95,14 +102,15 @@ void git_cache_free(git_cache *cache)
git_mutex_free(&cache->lock);
}
-/* Call with lock, yo */
-static void cache_evict_entries(git_cache *cache, size_t evict_count)
+/* Called with lock */
+static void cache_evict_entries(git_cache *cache)
{
uint32_t seed = rand();
+ size_t evict_count = 8;
/* do not infinite loop if there's not enough entries to evict */
if (evict_count > kh_size(cache->map)) {
- git_cache_clear(cache);
+ clear_cache(cache);
return;
}
@@ -163,6 +171,9 @@ static void *cache_store(git_cache *cache, git_cached_obj *entry)
if (git_mutex_lock(&cache->lock) < 0)
return entry;
+ if (cache->used_memory > git_cache__max_storage)
+ cache_evict_entries(cache);
+
pos = kh_get(oid, cache->map, &entry->oid);
/* not found */