From db4584c37380f1826986b3acfe35bbf92693dfc6 Mon Sep 17 00:00:00 2001 From: vnugent Date: Sat, 11 Mar 2023 02:04:31 -0500 Subject: Persistant cache abstraction and runtime loading --- lib/VNLib.Data.Caching.ObjectCache/src/IBlobCache.cs | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'lib/VNLib.Data.Caching.ObjectCache/src/IBlobCache.cs') diff --git a/lib/VNLib.Data.Caching.ObjectCache/src/IBlobCache.cs b/lib/VNLib.Data.Caching.ObjectCache/src/IBlobCache.cs index 52d53ff..bc3180b 100644 --- a/lib/VNLib.Data.Caching.ObjectCache/src/IBlobCache.cs +++ b/lib/VNLib.Data.Caching.ObjectCache/src/IBlobCache.cs @@ -34,6 +34,11 @@ namespace VNLib.Data.Caching.ObjectCache /// public interface IBlobCache : IEnumerable>, IDisposable { + /// + /// The id of the bucket this memory cache belongs to + /// + public uint BucketId { get; } + /// /// The internal heap used to allocate buffers /// -- cgit