CacheLiteSharp 1.0.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package CacheLiteSharp --version 1.0.0
NuGet\Install-Package CacheLiteSharp -Version 1.0.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="CacheLiteSharp" Version="1.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add CacheLiteSharp --version 1.0.0
#r "nuget: CacheLiteSharp, 1.0.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// 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

logo Build Status

📂 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 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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.

Version Downloads Last updated
6.0.1 791 10/16/2022
6.0.0 837 10/13/2022
1.0.0 1,369 7/18/2018

Initial release.