/* * Copyright (c) 2023 Vaughn Nugent * * Library: VNLib * Package: VNLib.Data.Caching.ObjectCache * File: BlobCacheBucket.cs * * BlobCacheBucket.cs is part of VNLib.Data.Caching.ObjectCache which is part of the larger * VNLib collection of libraries and utilities. * * VNLib.Data.Caching.ObjectCache is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * * VNLib.Data.Caching.ObjectCache is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see https://www.gnu.org/licenses/. */ using System.Threading; using System.Threading.Tasks; namespace VNLib.Data.Caching.ObjectCache { /// /// A concrete implementation of an /// public sealed class BlobCacheBucket : IBlobCacheBucket { private readonly BlobCache _cacheTable; private readonly SemaphoreSlim _lock; /// public uint Id { get; } /// /// Initialzies a new and its underlying /// /// /// /// The maxium number of entries allowed in the LRU cache /// before LRU overflow happens. /// /// The unique id of the new bucket /// The cache entry memory manager intance /// An optional for cache persistance public BlobCacheBucket(uint bucketId, int bucketCapacity, ICacheEntryMemoryManager memMan, IPersistantCacheStore? persistantCache) { Id = bucketId; _lock = new(1, 1); _cacheTable = new BlobCache(bucketId, bucketCapacity, memMan, persistantCache); } /// public void Dispose() { _cacheTable.Dispose(); _lock.Dispose(); } /// public async ValueTask ManualWaitAsync(CancellationToken cancellation) { await _lock.WaitAsync(cancellation).ConfigureAwait(false); return _cacheTable; } /// public void Release() { _lock.Release(); } } }