aboutsummaryrefslogtreecommitdiff
path: root/lib/VNLib.Data.Caching.ObjectCache/src/IBlobCache.cs
diff options
context:
space:
mode:
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; }