https://github.com/msadeqsirjani/cactus.blade.caching
Cactus.Blade.Caching is a simple utility that solves a common problem pragmatically - storing and accessing objects quickly in a .NET app.
https://github.com/msadeqsirjani/cactus.blade.caching
Last synced: about 1 month ago
JSON representation
Cactus.Blade.Caching is a simple utility that solves a common problem pragmatically - storing and accessing objects quickly in a .NET app.
- Host: GitHub
- URL: https://github.com/msadeqsirjani/cactus.blade.caching
- Owner: msadeqsirjani
- License: mit
- Created: 2020-12-10T10:10:03.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2020-12-11T09:36:15.000Z (over 4 years ago)
- Last Synced: 2025-02-09T11:13:05.181Z (3 months ago)
- Language: C#
- Homepage:
- Size: 1.95 MB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# Cactus.Blade.Caching

## What is Cactus.Blade.Caching
Cactus.Blade.Caching is a simple utility that solves a common problem pragmatically.
## Getting Started
### Installing
Once you're game, simply add it to your project [through NuGet](https://www.nuget.org/packages/Cactus.Blade.Caching).
NuGet Package Manager:
```bash
Install-Package Cactus.Blade.Caching
```NuGet CLI:
```bash
nuget install Cactus.Blade.Caching
```### Prerequisites
The Cactus.Blade.Caching library is built on **netstandard2.1**. This means it's compatible with .NET 5.x and up, .NET Core 2.x and up and traditional .NET 4.6.1 and higher. See the Microsoft [docs on .NET Standard compatibility](https://docs.microsoft.com/en-us/dotnet/standard/net-standard#net-platforms-support).
For traditional .NET 4.6.1+, you also need to have a more recent version of NuGet installed (NuGet v4 and up), which comes out-of-the-box with the latest updated versions of Visual Studio 2019 and [JetBrains Rider](https://www.jetbrains.com/rider/).
Cactus.Blade.Caching is Copyright © 2020 Mohammad Sadeq Sirjani under the [MIT license](LICENSE.txt).