EonaCat.Cache.Sqlite
1.0.4
.NET 6.0
.NET Core 3.1
.NET Standard 2.1
dotnet add package EonaCat.Cache.Sqlite --version 1.0.4
NuGet\Install-Package EonaCat.Cache.Sqlite -Version 1.0.4
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="EonaCat.Cache.Sqlite" Version="1.0.4" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add EonaCat.Cache.Sqlite --version 1.0.4
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: EonaCat.Cache.Sqlite, 1.0.4"
#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 EonaCat.Cache.Sqlite as a Cake Addin
#addin nuget:?package=EonaCat.Cache.Sqlite&version=1.0.4
// Install EonaCat.Cache.Sqlite as a Cake Tool
#tool nuget:?package=EonaCat.Cache.Sqlite&version=1.0.4
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
EonaCat.Cache.Sqlite
EonaCat Sqlite cache for .Net projects.
var cache = new SqliteCache(options =>
{
options.Location = @"cache.db";
});
services.AddEonaCatSqliteCache(options => {
options.Location = @"cache.db";
});
Create your class to help with the caching serialization
using EonaCat.Cache.Sqlite;
namespace SqliteCacheTester
{
public static class DnsCache
{
private static SqliteCache _cache;
static DnsCache()
{
Init();
}
public static void Init()
{
_cache = new SqliteCache();
}
public static T? GetCacheAsync<T>(string cacheKey)
{
var cached = _cache.HasKey(cacheKey) ? _cache.Get<T>($"{cacheKey}") : default;
return cached;
}
public static void SetCache<T>(string cacheKey,
T cachedObject)
{
_cache.Set(cacheKey, cachedObject);
}
}
}
Get/Set
FooBar myFooBarObject = new FooBar();
DnsCache.SetCache("MY_KEY", myFooBarObject);
var fooBar = DnsCache.GetCacheAsync<FooBar>("MY_KEY");
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 is compatible. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. |
.NET Core | netcoreapp3.0 was computed. netcoreapp3.1 is compatible. |
.NET Standard | netstandard2.1 is compatible. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
Compatible target framework(s)
Additional computed target framework(s)
Learn more about Target Frameworks and .NET Standard.
-
.NETCoreApp 3.1
- EonaCat.Json (>= 1.0.3)
- Microsoft.Data.Sqlite.Core (>= 7.0.9)
- Microsoft.Extensions.Caching.Abstractions (>= 7.0.0)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 7.0.0)
- Microsoft.Extensions.Logging.Abstractions (>= 7.0.1)
- Microsoft.Extensions.Options (>= 7.0.1)
- SQLitePCLRaw.bundle_green (>= 2.1.5)
-
.NETStandard 2.1
- EonaCat.Json (>= 1.0.3)
- Microsoft.Data.Sqlite.Core (>= 7.0.9)
- Microsoft.Extensions.Caching.Abstractions (>= 7.0.0)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 7.0.0)
- Microsoft.Extensions.Logging.Abstractions (>= 7.0.1)
- Microsoft.Extensions.Options (>= 7.0.1)
- SQLitePCLRaw.bundle_green (>= 2.1.5)
-
net6.0
- EonaCat.Json (>= 1.0.3)
- Microsoft.Data.Sqlite.Core (>= 7.0.9)
- Microsoft.Extensions.Caching.Abstractions (>= 7.0.0)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 7.0.0)
- Microsoft.Extensions.Logging.Abstractions (>= 7.0.1)
- Microsoft.Extensions.Options (>= 7.0.1)
- SQLitePCLRaw.bundle_green (>= 2.1.5)
-
net7.0
- EonaCat.Json (>= 1.0.3)
- Microsoft.Data.Sqlite.Core (>= 7.0.9)
- Microsoft.Extensions.Caching.Abstractions (>= 7.0.0)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 7.0.0)
- Microsoft.Extensions.Logging.Abstractions (>= 7.0.1)
- Microsoft.Extensions.Options (>= 7.0.1)
- SQLitePCLRaw.bundle_green (>= 2.1.5)
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 |
---|---|---|
1.0.4 | 110 | 7/18/2023 |
EonaCat.Cache.Sqlite