Xamarin.CustomCache
1.0.3
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package Xamarin.CustomCache --version 1.0.3
NuGet\Install-Package Xamarin.CustomCache -Version 1.0.3
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="Xamarin.CustomCache" Version="1.0.3" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Xamarin.CustomCache --version 1.0.3
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Xamarin.CustomCache, 1.0.3"
#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 Xamarin.CustomCache as a Cake Addin #addin nuget:?package=Xamarin.CustomCache&version=1.0.3 // Install Xamarin.CustomCache as a Cake Tool #tool nuget:?package=Xamarin.CustomCache&version=1.0.3
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
CustomCache
A Shared Xamarin component for Caching custom data on to disk
Usage:
using Subsystems.Cache.External;
....
....
General:
var cachedFolderPathString = Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments);
var cacheProxy = new CMPCacheProxy(cachedFolderPathString, <sizeLimitInKB>); // e.g. 5 * 1024
cacheProxy.ExpiryDays(<Expiry_Days>); // Cache will invalidate after expiry from Creation or Last Update
string cacheString = null;
byte[] retrievedBytes = cacheProxy.RetieveItem("testfile81");
if (retrievedBytes != null)
{
cacheString = System.Text.Encoding.UTF8.GetString(retrievedBytes);
Console.WriteLine("cacheString:" + cacheString);
}
else
{
cacheString = "Test String38";
byte[] cacheBytes = System.Text.Encoding.UTF8.GetBytes(cacheString);
cacheProxy.CacheItem(cacheBytes, "testfile81");
}
Various ways to define Cache Expiry:
// Cache will invalidate after expiry from Creation or Last Update
var cacheProxy = new CMPCacheProxy(cachedFolderPathString, <sizeLimitInKB>);
cacheProxy.ExpiryDays(<Expiry_Days>);
OR,
cacheProxy.ExpiryMonths(<Expiry_Months>);
OR,
cacheProxy.ExpiryYears(<Expiry_Years>);
OR,
cacheProxy.ExpiryHours(<Expiry_Years>);
OR,
cacheProxy.ExpiryMinutes(<Expiry_Minutes>);
OR,
cacheProxy.ExpirySeconds(<Expiry_Seconds>);
Product | Versions Compatible and additional computed target framework versions. |
---|---|
MonoAndroid | monoandroid90 is compatible. |
Xamarin.iOS | xamarinios10 is compatible. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
MonoAndroid 9.0
- No dependencies.
-
Xamarin.iOS 1.0
- No dependencies.
NuGet packages (2)
Showing the top 2 NuGet packages that depend on Xamarin.CustomCache:
Package | Downloads |
---|---|
Xamarin.ImageLoader
A Reusable component to Download Image directly from URL. This also supportes Caching the downloaded images efficiently |
|
Xamarin.CustomImageView.iOS
A custom ImageView component for iOS with inteligent Caching, Handle Cache expiry, Automatic Download |
GitHub repositories
This package is not used by any popular GitHub repositories.
Added new Nuget package Icon