LiteCache.Tizen
0.2.0
dotnet add package LiteCache.Tizen --version 0.2.0
NuGet\Install-Package LiteCache.Tizen -Version 0.2.0
<PackageReference Include="LiteCache.Tizen" Version="0.2.0" />
paket add LiteCache.Tizen --version 0.2.0
#r "nuget: LiteCache.Tizen, 0.2.0"
// Install LiteCache.Tizen as a Cake Addin #addin nuget:?package=LiteCache.Tizen&version=0.2.0 // Install LiteCache.Tizen as a Cake Tool #tool nuget:?package=LiteCache.Tizen&version=0.2.0
LiteCache.Tizen
Easely cache any data structure for specific amount of time in Tizen.NET app, which powered by LiteDB.
Setup
Install LiteCache.Tizen package on your Tizen.NET project.
It's required to set a cache directory for your application, which will create specific folder with the application on disk. This can be done by assign value to static string on Cotton before calling other Cotton method:
Cotton.CacheDirectory = "Your cache directory";
e.g:
Cotton.CacheDirectory = Current.DirectoryInfo.Cache;
Encryption
LiteDB offers built in encryption support (https://github.com/mbdavid/LiteDB/wiki/Connection-String), which can be enabled with a static string on Barrel before calling ANY method. You must choose this up front before saving any data.
Cotton.EncryptionKey = "Your encryption key";
And you ready to cache any data structure.
Version history
0.2.0
- Add function to read any existing key that stored on disk, both active or expired
0.1.0
- Create, Read, Delete cache data with key to storage
- Check if key is expired
- Check if key is exist
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. 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 was computed. 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. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- LiteDB (>= 4.1.4)
- Newtonsoft.Json (>= 11.0.2)
- Tizen.NET (>= 4.0.0)
- Tizen.NET.Sdk (>= 1.0.1)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.