CacheLiteSharp 1.0.0
See the version list below for details.
dotnet add package CacheLiteSharp --version 1.0.0
NuGet\Install-Package CacheLiteSharp -Version 1.0.0
<PackageReference Include="CacheLiteSharp" Version="1.0.0" />
paket add CacheLiteSharp --version 1.0.0
#r "nuget: CacheLiteSharp, 1.0.0"
// Install CacheLiteSharp as a Cake Addin #addin nuget:?package=CacheLiteSharp&version=1.0.0 // Install CacheLiteSharp as a Cake Tool #tool nuget:?package=CacheLiteSharp&version=1.0.0
📂 A variety of cache implementations, all in .NET Core C#
Primarily influenced by the Kotlin-based Cache-Lite over at Kid the Programmer
Cache implementations include Perpetual, Least Recently Used, and Expirable.
This is mainly an academic exercise, however, feel entirely free to use this class library in your own projects, and please let me know the results of said attempt. This library comes in a handy nuget package for the bold in question.
Installation
PM> Install-Package CacheLiteSharp.Core -Version 1.0.0
Interface
All caches in this library implement the following simplistic interface, with slight variations on flush strategy inherent to said implementation:
public interface ICache<T> where T : class
{
/// <summary>
/// Obtain the size of the Cache in integer form
/// </summary>
int Size { get; }
/// <summary>
/// Set a generic cache value based on a string key
/// </summary>
/// <param name="key"></param>
/// <param name="value"></param>
void Set(string key, T value);
/// <summary>
/// Get a particular cache value using a string key
/// </summary>
/// <param name="key"></param>
/// <returns></returns>
T Get(string key);
/// <summary>
/// Remove a particular cache value using a string key
/// </summary>
/// <param name="key"></param>
/// <returns></returns>
T Remove(string key);
/// <summary>
/// Clear the entire cache
/// </summary>
void Clear();
}
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net461 is compatible. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
This package has no dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Initial release.