Skip to content

kbrashears5/net-standard-cache-helper

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

52 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Net Standard Cache Helper

Cache helper for Net Standard libraries

Build Status Tests Code Coverage

nuget nuget

Usage

var cacheNames = new List<string>() { "cache1", "cache2" };

var helper = new CacheHelper(cacheNames: cacheNames);

helper.Add<string>(cacheName: "cache1",
    key: "key",
    value: "value");