From 3c353afe4dffa3da9c96ef25b02f0004676afe5f Mon Sep 17 00:00:00 2001 From: vnugent Date: Sat, 14 Oct 2023 15:50:46 -0400 Subject: experimential expansion and performance changes --- lib/VNLib.Data.Caching/src/IGlobalCacheProvider.cs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'lib/VNLib.Data.Caching/src/IGlobalCacheProvider.cs') diff --git a/lib/VNLib.Data.Caching/src/IGlobalCacheProvider.cs b/lib/VNLib.Data.Caching/src/IGlobalCacheProvider.cs index eb782d9..8a857d4 100644 --- a/lib/VNLib.Data.Caching/src/IGlobalCacheProvider.cs +++ b/lib/VNLib.Data.Caching/src/IGlobalCacheProvider.cs @@ -101,13 +101,11 @@ namespace VNLib.Data.Caching /// Asynchronously sets (or updates) a cached value in the backing cache store /// from the supplied raw data /// - /// /// The key identifying the object to recover from cache /// An optional key that will be changed for the new object /// A token to cancel the async operation /// The raw data to store at the given key - /// The used to serialze the entity /// A task that completes when the update operation has compelted - Task AddOrUpdateAsync(string key, string? newKey, IObjectData rawData, ICacheObjectSerialzer serialzer, CancellationToken cancellation); + Task AddOrUpdateAsync(string key, string? newKey, IObjectData rawData, CancellationToken cancellation); } } \ No newline at end of file -- cgit