aboutsummaryrefslogtreecommitdiff
path: root/lib/VNLib.Data.Caching.ObjectCache/src/IBlobCache.cs
diff options
context:
space:
mode:
authorLibravatar vnugent <public@vaughnnugent.com>2023-03-11 02:04:31 -0500
committerLibravatar vnugent <public@vaughnnugent.com>2023-03-11 02:04:31 -0500
commitdb4584c37380f1826986b3acfe35bbf92693dfc6 (patch)
tree3a264c95c6f3bf74453662cc8d180a9d570bfbfe /lib/VNLib.Data.Caching.ObjectCache/src/IBlobCache.cs
parenta27a4ce58d6e09b34027b30d0c5c988e3112a54d (diff)
Persistant cache abstraction and runtime loading
Diffstat (limited to 'lib/VNLib.Data.Caching.ObjectCache/src/IBlobCache.cs')
-rw-r--r--lib/VNLib.Data.Caching.ObjectCache/src/IBlobCache.cs5
1 files changed, 5 insertions, 0 deletions
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
@@ -35,6 +35,11 @@ namespace VNLib.Data.Caching.ObjectCache
public interface IBlobCache : IEnumerable<KeyValuePair<string, CacheEntry>>, IDisposable
{
/// <summary>
+ /// The id of the bucket this memory cache belongs to
+ /// </summary>
+ public uint BucketId { get; }
+
+ /// <summary>
/// The internal heap used to allocate <see cref="CacheEntry"/> buffers
/// </summary>
IUnmangedHeap CacheHeap { get; }