/* * Copyright (c) 2023 Vaughn Nugent * * Library: VNLib * Package: VNLib.Data.Caching * File: IGlobalCacheProvider.cs * * IGlobalCacheProvider.cs is part of VNLib.Data.Caching which is part of the larger * VNLib collection of libraries and utilities. * * VNLib.Data.Caching 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 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 { /// /// A global cache provider interface /// public interface IGlobalCacheProvider { /// /// Gets a value that indicates if the cache provider is currently available /// bool IsConnected { get; } /// /// Asynchronously gets a value from the backing cache store /// /// /// The key identifying the object to recover from cache /// A token to cancel the async operation /// The value if found, or null if it does not exist in the store Task GetAsync(string key, CancellationToken cancellation); /// /// Asynchronously sets (or updates) a cached value in the backing cache store /// /// /// 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 value to set at the given key /// A task that completes when the update operation has compelted Task AddOrUpdateAsync(string key, string? newKey, T value, CancellationToken cancellation); /// /// Asynchronously deletes an item from cache by its key /// /// The key identifying the item to delete /// A token to cancel the async operation /// A task that completes when the delete operation has compelted Task DeleteAsync(string key, CancellationToken cancellation); /// /// Asynchronously gets a value from the backing cache store /// /// /// The key identifying the object to recover from cache /// The specific deserialzer to deserialze the object /// A token to cancel the async operation /// The value if found, or null if it does not exist in the store Task GetAsync(string key, ICacheObjectDeserialzer deserializer, CancellationToken cancellation); /// /// Asynchronously sets (or updates) a cached value in the backing cache store /// /// /// 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 value to set 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, T value, ICacheObjectSerialzer serialzer, CancellationToken cancellation); } }