From 9c9e00515a367a7c4a916d19c3d71795f2193910 Mon Sep 17 00:00:00 2001 From: vnugent Date: Mon, 7 Aug 2023 20:08:18 -0400 Subject: New api impl patch --- plugins/ObjectCacheServer/src/Cache/CacheConfiguration.cs | 4 ---- 1 file changed, 4 deletions(-) (limited to 'plugins') diff --git a/plugins/ObjectCacheServer/src/Cache/CacheConfiguration.cs b/plugins/ObjectCacheServer/src/Cache/CacheConfiguration.cs index 86e1f5a..bd15d24 100644 --- a/plugins/ObjectCacheServer/src/Cache/CacheConfiguration.cs +++ b/plugins/ObjectCacheServer/src/Cache/CacheConfiguration.cs @@ -44,10 +44,6 @@ namespace VNLib.Data.Caching.ObjectCache.Server.Cache public int MaxMessageSize { get; set; } = 1000 * 1024; - [JsonPropertyName("change_queue_max_depth")] - public int MaxEventQueueDepth { get; set; } = 10 * 1000; - - [JsonPropertyName("max_cache")] public uint MaxCacheEntries { get; set; } = 10000; -- cgit