![]() |
VOOZH | about |
dotnet add package VIEApps.Components.Caching --version 10.10.2606.1
NuGet\Install-Package VIEApps.Components.Caching -Version 10.10.2606.1
<PackageReference Include="VIEApps.Components.Caching" Version="10.10.2606.1" />
<PackageVersion Include="VIEApps.Components.Caching" Version="10.10.2606.1" />Directory.Packages.props
<PackageReference Include="VIEApps.Components.Caching" />Project file
paket add VIEApps.Components.Caching --version 10.10.2606.1
#r "nuget: VIEApps.Components.Caching, 10.10.2606.1"
#:package VIEApps.Components.Caching@10.10.2606.1
#addin nuget:?package=VIEApps.Components.Caching&version=10.10.2606.1Install as a Cake Addin
#tool nuget:?package=VIEApps.Components.Caching&version=10.10.2606.1Install as a Cake Tool
A wrapper component for working with distributed cache
Add the configuration settings into your app.config/web.config file
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<configSections>
<section name="memcached" type="Enyim.Caching.Configuration.MemcachedClientConfigurationSectionHandler,Enyim.Caching" />
<section name="redis" type="net.vieapps.Components.Caching.RedisClientConfigurationSectionHandler,VIEApps.Components.Caching" />
</configSections>
<memcached>
<servers>
<add address="192.168.1.2" port="11211" />
<add address="192.168.1.3" port="11211" />
</servers>
<socketPool minPoolSize="10" maxPoolSize="512" deadTimeout="00:01:00" connectionTimeout="00:00:05" receiveTimeout="00:00:05" />
</memcached>
<redis>
<servers>
<add address="192.168.1.4" port="6379" />
<add address="192.168.1.5" port="6379" />
</servers>
<options abortConnect="false" allowAdmin="false" connectTimeout="5000" syncTimeout="2000" />
</redis>
</configuration>
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<configSections>
<section name="cache" type="net.vieapps.Components.Caching.CacheConfigurationSectionHandler,VIEApps.Components.Caching" />
</configSections>
<cache provider="Redis" expirationTime="30">
<servers>
<add address="192.168.1.2" port="11211" type="Memcached" />
<add address="192.168.1.3" port="11211" type="Memcached" />
<add address="192.168.1.4" port="6379" type="Redis" />
<add address="192.168.1.5" port="6379" type="Redis" />
</servers>
<socketPool minPoolSize="10" maxPoolSize="512" deadTimeout="00:01:00" connectionTimeout="00:00:05" receiveTimeout="00:00:05" />
<options abortConnect="false" allowAdmin="false" connectTimeout="5000" syncTimeout="2000" />
</cache>
</configuration>
public class CreativeService
{
using net.vieapps.Components.Caching;
Cache _cache;
Cache _memcached;
Cache _redis;
public CreativeService()
{
this._cache = new Cache("Region-Name"); // with default caching provider is 'Redis'
this._memcached = new Cache("Region-Name", "memcached");
this._redis = new Cache("Region-Name", "redis");
}
public async Task<IList<CreativeDTO>> GetCreativesAsync(string unitName)
{
return await this._cache.GetAsync<IList<CreativeDTO>>($"creatives_{unitName}");
}
public async Task<IList<CreativeDTO>> GetMemcachedCreativesAsync(string unitName)
{
return await this._memcached.GetAsync<IList<CreativeDTO>>($"creatives_{unitName}");
}
public async Task<IList<CreativeDTO>> GetRedisCreativesAsync(string unitName)
{
return await this._redis.GetAsync<IList<CreativeDTO>>($"creatives_{unitName}");
}
}
TBD
TBD
bool Set(string key, object value, int expirationTime = 0);
bool Set(string key, object value, TimeSpan validFor);
bool Set(string key, object value, DateTime expiresAt);
Task<bool> SetAsync(string key, object value, int expirationTime = 0);
Task<bool> SetAsync(string key, object value, TimeSpan validFor);
Task<bool> SetAsync(string key, object value, DateTime expiresAt);
void Set(IDictionary<string, object> items, string keyPrefix = null, int expirationTime = 0);
void Set<T>(IDictionary<string, T> items, string keyPrefix = null, int expirationTime = 0);
Task SetAsync(IDictionary<string, object> items, string keyPrefix = null, int expirationTime = 0);
Task SetAsync<T>(IDictionary<string, T> items, string keyPrefix = null, int expirationTime = 0);
bool SetFragments(string key, List<byte[]> fragments, int expirationTime = 0);
Task<bool> SetFragmentsAsync(string key, List<byte[]> fragments, int expirationTime = 0);
bool SetAsFragments(string key, object value, int expirationTime = 0);
Task<bool> SetAsFragmentsAsync(string key, object value, int expirationTime = 0);
bool Add(string key, object value, int expirationTime = 0);
bool Add(string key, object value, TimeSpan validFor);
bool Add(string key, object value, DateTime expiresAt);
Task<bool> AddAsync(string key, object value, int expirationTime = 0);
Task<bool> AddAsync(string key, object value, TimeSpan validFor);
Task<bool> AddAsync(string key, object value, DateTime expiresAt);
bool Replace(string key, object value, int expirationTime = 0);
bool Replace(string key, object value, TimeSpan validFor);
bool Replace(string key, object value, DateTime expiresAt);
Task<bool> ReplaceAsync(string key, object value, int expirationTime = 0);
Task<bool> ReplaceAsync(string key, object value, TimeSpan validFor);
Task<bool> ReplaceAsync(string key, object value, DateTime expiresAt);
object Get(string key);
T Get<T>(string key);
Task<object> GetAsync(string key);
Task<T> GetAsync<T>(string key);
IDictionary<string, object> Get(IEnumerable<string> keys);
Task<IDictionary<string, object>> GetAsync(IEnumerable<string> keys);
IDictionary<string, T> Get<T>(IEnumerable<string> keys);
Task<IDictionary<string, T>> GetAsync<T>(IEnumerable<string> keys);
Tuple<int, int> GetFragments(string key);
Task<Tuple<int, int>> GetFragmentsAsync(string key);
List<byte[]> GetAsFragments(string key, List<int> indexes);
Task<List<byte[]>> GetAsFragmentsAsync(string key, List<int> indexes);
List<byte[]> GetAsFragments(string key, params int[] indexes);
Task<List<byte[]>> GetAsFragmentsAsync(string key, params int[] indexes);
bool Remove(string key);
Task<bool> RemoveAsync(string key);
void Remove(IEnumerable<string> keys, string keyPrefix = null);
Task RemoveAsync(IEnumerable<string> keys, string keyPrefix = null);
void RemoveFragments(string key);
Task RemoveFragmentsAsync(string key);
bool Exists(string key);
Task<bool> ExistsAsync(string key);
void Clear();
Task ClearAsync();
HashSet<string> GetKeys();
Task<HashSet<string>> GetKeysAsync();
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0 net5.0 was computed. net5.0-windows net5.0-windows was computed. net6.0 net6.0 was computed. net6.0-android net6.0-android was computed. net6.0-ios net6.0-ios was computed. net6.0-maccatalyst net6.0-maccatalyst was computed. net6.0-macos net6.0-macos was computed. net6.0-tvos net6.0-tvos was computed. net6.0-windows net6.0-windows was computed. net7.0 net7.0 was computed. net7.0-android net7.0-android was computed. net7.0-ios net7.0-ios was computed. net7.0-maccatalyst net7.0-maccatalyst was computed. net7.0-macos net7.0-macos was computed. net7.0-tvos net7.0-tvos was computed. net7.0-windows net7.0-windows was computed. net8.0 net8.0 was computed. net8.0-android net8.0-android was computed. net8.0-browser net8.0-browser was computed. net8.0-ios net8.0-ios was computed. net8.0-maccatalyst net8.0-maccatalyst was computed. net8.0-macos net8.0-macos was computed. net8.0-tvos net8.0-tvos was computed. net8.0-windows net8.0-windows was computed. net9.0 net9.0 was computed. net9.0-android net9.0-android was computed. net9.0-browser net9.0-browser was computed. net9.0-ios net9.0-ios was computed. net9.0-maccatalyst net9.0-maccatalyst was computed. net9.0-macos net9.0-macos was computed. net9.0-tvos net9.0-tvos was computed. net9.0-windows net9.0-windows was computed. net10.0 net10.0 was computed. net10.0-android net10.0-android was computed. net10.0-browser net10.0-browser was computed. net10.0-ios net10.0-ios was computed. net10.0-maccatalyst net10.0-maccatalyst was computed. net10.0-macos net10.0-macos was computed. net10.0-tvos net10.0-tvos was computed. net10.0-windows net10.0-windows was computed. |
| .NET Core | netcoreapp2.0 netcoreapp2.0 was computed. netcoreapp2.1 netcoreapp2.1 was computed. netcoreapp2.2 netcoreapp2.2 was computed. netcoreapp3.0 netcoreapp3.0 was computed. netcoreapp3.1 netcoreapp3.1 was computed. |
| .NET Standard | netstandard2.0 netstandard2.0 is compatible. netstandard2.1 netstandard2.1 was computed. |
| .NET Framework | net461 net461 was computed. net462 net462 was computed. net463 net463 was computed. net47 net47 was computed. net471 net471 was computed. net472 net472 was computed. net48 net48 was computed. net481 net481 was computed. |
| MonoAndroid | monoandroid monoandroid was computed. |
| MonoMac | monomac monomac was computed. |
| MonoTouch | monotouch monotouch was computed. |
| Tizen | tizen40 tizen40 was computed. tizen60 tizen60 was computed. |
| Xamarin.iOS | xamarinios xamarinios was computed. |
| Xamarin.Mac | xamarinmac xamarinmac was computed. |
| Xamarin.TVOS | xamarintvos xamarintvos was computed. |
| Xamarin.WatchOS | xamarinwatchos xamarinwatchos was computed. |
Showing the top 4 NuGet packages that depend on VIEApps.Components.Caching:
| Package | Downloads |
|---|---|
|
VIEApps.Components.Repository
A tiny polyglot component to help POCO objects work with both NoSQL and SQL databases at the same time on .NET |
|
|
VIEApps.Services.Abstractions
The abstractions for all microservices in the VIEApps NGX |
|
|
VIEApps.Components.Utility.AspNetCore
The general purpose components for developing apps with ASP.NET Core |
|
|
VIEApps.Components.Caching.AspNet
ASP.NET Session State with distributed cache (Redis & Memcached) |
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated | |
|---|---|---|---|
| 10.10.2606.1 | 738 | 5/30/2026 | |
| 10.10.2605.2 | 802 | 5/24/2026 | |
| 10.10.2605.1 | 784 | 4/30/2026 | |
| 10.10.2604.24 | 753 | 4/15/2026 | |
| 10.10.2604.2 | 771 | 4/2/2026 | |
| 10.10.2604.1 | 776 | 4/2/2026 | |
| 10.10.2603.7 | 761 | 3/17/2026 | |
| 10.10.2603.6 | 819 | 3/17/2026 | |
| 10.10.2603.5 | 900 | 3/16/2026 | |
| 10.10.2603.4 | 897 | 3/14/2026 | |
| 10.10.2603.3 | 773 | 3/8/2026 | |
| 10.10.2603.2 | 782 | 3/2/2026 | |
| 10.10.2603.1 | 772 | 3/2/2026 | |
| 10.10.2602.1 | 1,069 | 2/6/2026 | |
| 10.10.2601.1 | 440 | 1/1/2026 | |
| 10.10.2512.2 | 821 | 12/10/2025 | |
| 10.10.2512.1 | 546 | 11/27/2025 | |
| 10.10.2511.1 | 654 | 11/12/2025 | |
| 10.9.2511.1 | 666 | 11/4/2025 | 10.9.2511.1 is deprecated because it has critical bugs. |
| 10.9.2510.3 | 543 | 10/25/2025 |
Monitors