EnyimMemcachedCore 2.6.3
.NET 6.0
This package targets .NET 6.0. The package is compatible with this framework or higher.
.NET Standard 2.0
This package targets .NET Standard 2.0. The package is compatible with this framework or higher.
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 EnyimMemcachedCore --version 2.6.3
NuGet\Install-Package EnyimMemcachedCore -Version 2.6.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="EnyimMemcachedCore" Version="2.6.3" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add EnyimMemcachedCore --version 2.6.3
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: EnyimMemcachedCore, 2.6.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 EnyimMemcachedCore as a Cake Addin #addin nuget:?package=EnyimMemcachedCore&version=2.6.3 // Install EnyimMemcachedCore as a Cake Tool #tool nuget:?package=EnyimMemcachedCore&version=2.6.3
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Enyim Memcached Client
This is a memcached client library for .NET migrated from EnyimMemcached.
Configure
The appsettings.json Without Authentication
{
"enyimMemcached": {
"Servers": [
{
"Address": "memcached",
"Port": 11211
}
],
"Transcoder": "MessagePackTranscoder"
}
}
The appsettings.json With Authentication
{
"enyimMemcached": {
"Servers": [
{
"Address": "memcached",
"Port": 11211
}
],
"Authentication": {
"Type": "Enyim.Caching.Memcached.PlainTextAuthenticator",
"Parameters": {
"zone": "",
"userName": "username",
"password": "password"
}
}
}
}
Startup.cs
public class Startup
{
public void ConfigureServices(IServiceCollection services)
{
services.AddEnyimMemcached();
// services.AddEnyimMemcached("enyimMemcached");
// services.AddEnyimMemcached(Configuration);
// services.AddEnyimMemcached(Configuration, "enyimMemcached");
// services.AddEnyimMemcached(Configuration.GetSection("enyimMemcached"));
// services.AddEnyimMemcached(options => options.AddServer("memcached", 11211));
}
public void Configure(IApplicationBuilder app, IHostingEnvironment env, ILoggerFactory loggerFactory)
{
app.UseEnyimMemcached();
}
}
Example usage
Use IMemcachedClient interface
public class HomeController : Controller
{
private readonly IMemcachedClient _memcachedClient;
private readonly IBlogPostService _blogPostService;
public HomeController(IMemcachedClient memcachedClient, IBlogPostService blogPostService)
{
_memcachedClient = memcachedClient;
_blogPostService = blogPostService;
}
public async Task<IActionResult> Index()
{
var cacheKey = "blogposts-recent";
var cacheSeconds = 600;
var posts = await _memcachedClient.GetValueOrCreateAsync(
cacheKey,
cacheSeconds,
async () => await _blogPostService.GetRecent(10));
return Ok(posts);
}
}
Use IDistributedCache interface
public class CreativeService
{
private ICreativeRepository _creativeRepository;
private IDistributedCache _cache;
public CreativeService(
ICreativeRepository creativeRepository,
IDistributedCache cache)
{
_creativeRepository = creativeRepository;
_cache = cache;
}
public async Task<IList<CreativeDTO>> GetCreatives(string unitName)
{
var cacheKey = $"creatives_{unitName}";
IList<CreativeDTO> creatives = null;
var creativesJson = await _cache.GetStringAsync(cacheKey);
if (creativesJson == null)
{
creatives = await _creativeRepository.GetCreatives(unitName)
.ProjectTo<CreativeDTO>().ToListAsync();
var json = string.Empty;
if (creatives != null && creatives.Count() > 0)
{
json = JsonConvert.SerializeObject(creatives);
}
await _cache.SetStringAsync(
cacheKey,
json,
new DistributedCacheEntryOptions().SetSlidingExpiration(TimeSpan.FromMinutes(5)));
}
else
{
creatives = JsonConvert.DeserializeObject<List<CreativeDTO>>(creativesJson);
}
return creatives;
}
}
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. 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 is compatible. |
.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. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
.NETStandard 2.0
- MessagePack (>= 2.4.59)
- Microsoft.AspNetCore.Http.Abstractions (>= 2.2.0)
- Microsoft.Extensions.Caching.Abstractions (>= 7.0.0)
- Microsoft.Extensions.Configuration.Abstractions (>= 7.0.0)
- Microsoft.Extensions.Logging.Abstractions (>= 7.0.0)
- Microsoft.Extensions.Options (>= 7.0.0)
- Microsoft.Extensions.Options.ConfigurationExtensions (>= 7.0.0)
- Newtonsoft.Json.Bson (>= 1.0.2)
- System.Threading.Tasks.Extensions (>= 4.5.4)
-
.NETStandard 2.1
- MessagePack (>= 2.4.59)
- Microsoft.AspNetCore.Http.Abstractions (>= 2.2.0)
- Microsoft.Extensions.Caching.Abstractions (>= 7.0.0)
- Microsoft.Extensions.Configuration.Abstractions (>= 7.0.0)
- Microsoft.Extensions.Logging.Abstractions (>= 7.0.0)
- Microsoft.Extensions.Options (>= 7.0.0)
- Microsoft.Extensions.Options.ConfigurationExtensions (>= 7.0.0)
- Newtonsoft.Json.Bson (>= 1.0.2)
- System.Threading.Tasks.Extensions (>= 4.5.4)
-
net6.0
- MessagePack (>= 2.4.59)
- Newtonsoft.Json.Bson (>= 1.0.2)
-
net7.0
- MessagePack (>= 2.4.59)
- Newtonsoft.Json.Bson (>= 1.0.2)
NuGet packages (45)
Showing the top 5 NuGet packages that depend on EnyimMemcachedCore:
Package | Downloads |
---|---|
EasyCaching.Memcached
A simple distributed caching provider based on EnyimMemcachedCore. |
|
Senparc.CO2NET.Cache.Memcached
WeChat Public Account - Memcached Module Senparc.CO2NET SDK Open Source Project: https://github.com/JeffreySu/WeiXinMPSDK |
|
EDQ.WMS.Infrastructrue
Package Description |
|
Zicard.API.Common
Bases microservices da Zicard API |
|
MT.DotNetCore
MT DotNetCore Common Libs. |
GitHub repositories (5)
Showing the top 5 popular GitHub repositories that depend on EnyimMemcachedCore:
Repository | Stars |
---|---|
dotnetcore/EasyCaching
:boom: EasyCaching is an open source caching library that contains basic usages and some advanced usages of caching which can help us to handle caching more easier!
|
|
Cysharp/MasterMemory
Embedded Typed Readonly In-Memory Document Database for .NET and Unity.
|
|
Senparc/Senparc.CO2NET
Base Common Library, support for.NET Framework &.NET Core
|
|
grissomlau/jimu
.netcore micro service framework
|
|
catcherwong/Demos
:100:Some demos for learning
|
Version | Downloads | Last updated |
---|---|---|
3.2.4 | 3,759 | 10/27/2024 |
3.2.3 | 57,326 | 9/2/2024 |
3.2.2 | 57,205 | 7/31/2024 |
3.2.1 | 251,544 | 4/3/2024 |
3.2.0 | 106,906 | 2/22/2024 |
3.1.0 | 596 | 2/21/2024 |
3.0.1 | 39,631 | 2/6/2024 |
3.0.0 | 16,766 | 1/31/2024 |
2.7.1 | 29,560 | 2/6/2024 |
2.7.0 | 151,968 | 12/2/2023 |
2.6.6 | 485,806 | 5/2/2023 |
2.6.5 | 3,441 | 4/28/2023 |
2.6.4 | 238,945 | 1/29/2023 |
2.6.3 | 1,401 | 1/29/2023 |
2.6.2 | 1,059 | 1/29/2023 |
2.6.1 | 1,134 | 1/29/2023 |
2.6.0 | 69,462 | 1/18/2023 |
2.5.7 | 83,546 | 1/1/2023 |
2.5.6 | 284,900 | 11/24/2022 |
2.5.5 | 45,524 | 11/4/2022 |
2.5.4 | 364,819 | 7/3/2022 |
2.5.3 | 1,270,289 | 1/27/2021 |
2.5.2 | 78,801 | 1/3/2021 |
2.5.2-preview1 | 1,459 | 12/4/2020 |
2.5.1 | 44,901 | 12/2/2020 |
2.5.0 | 2,141 | 12/2/2020 |
2.5.0-preview3 | 1,180 | 11/30/2020 |
2.5.0-preview2 | 1,144 | 11/30/2020 |
2.5.0-preview1 | 1,137 | 11/14/2020 |
2.4.5 | 262,010 | 11/17/2020 |
2.4.4 | 322,992 | 8/25/2020 |
2.4.3 | 249,469 | 3/25/2020 |
2.4.2 | 58,865 | 2/25/2020 |
2.4.1 | 207,664 | 10/16/2019 |
2.4.0 | 175,416 | 9/15/2019 |
2.3.0 | 81,187 | 7/10/2019 |
2.2.4 | 86,063 | 6/15/2019 |
2.2.3 | 13,181 | 5/25/2019 |
2.2.2 | 9,998 | 5/17/2019 |
2.2.0 | 65,161 | 5/16/2019 |
2.1.14 | 16,897 | 5/3/2019 |
2.1.13 | 10,684 | 4/21/2019 |
2.1.12 | 43,246 | 12/31/2018 |
2.1.11 | 1,989 | 12/30/2018 |
2.1.10 | 230,041 | 9/22/2018 |
2.1.9 | 25,084 | 9/16/2018 |
2.1.8 | 71,868 | 6/18/2018 |
2.1.7 | 3,742 | 6/12/2018 |
2.1.5 | 100,404 | 5/30/2018 |
2.1.3 | 2,212 | 5/29/2018 |
2.1.2 | 4,296 | 5/24/2018 |
2.1.1 | 12,196 | 5/23/2018 |
2.1.0.7 | 44,367 | 4/2/2018 |
2.1.0.6 | 2,541 | 3/26/2018 |
2.1.0.5 | 5,159 | 3/8/2018 |
2.1.0.4 | 2,470 | 3/5/2018 |
2.1.0.3 | 2,165 | 3/5/2018 |
2.1.0.2 | 29,317 | 1/19/2018 |
2.1.0.1 | 9,689 | 1/3/2018 |
2.1.0 | 141,340 | 12/15/2017 |
2.0.4 | 2,092 | 12/12/2017 |
2.0.2 | 25,310 | 9/7/2017 |
2.0.1 | 30,609 | 8/19/2017 |
2.0.0 | 6,397 | 8/15/2017 |
2.0.0-beta1 | 2,834 | 7/12/2017 |
1.1.1.12 | 12,101 | 7/8/2017 |
1.1.1.11 | 2,060 | 7/8/2017 |
1.1.1.10 | 8,198 | 5/20/2017 |
1.1.1.9 | 2,124 | 5/20/2017 |
1.1.1.8 | 3,844 | 4/20/2017 |
1.1.1.7 | 6,876 | 3/18/2017 |
1.1.1.6 | 10,426 | 3/16/2017 |
1.1.1.5 | 2,682 | 3/7/2017 |
1.1.1.4 | 2,341 | 3/7/2017 |
1.1.1.3 | 13,834 | 1/2/2017 |
1.1.1.2 | 2,318 | 12/24/2016 |
1.1.1.1 | 2,970 | 12/20/2016 |
1.1.1 | 2,609 | 12/10/2016 |
1.1.0.2 | 2,643 | 12/10/2016 |
1.1.0.1 | 2,438 | 12/8/2016 |
1.1.0 | 2,430 | 12/5/2016 |
1.0.0.8 | 6,864 | 11/11/2016 |
1.0.0.7-preview1 | 2,170 | 10/26/2016 |
1.0.0.6 | 5,826 | 10/20/2016 |
1.0.0.5 | 2,219 | 10/19/2016 |
1.0.0.4 | 2,227 | 10/18/2016 |
1.0.0.3 | 2,243 | 10/13/2016 |
1.0.0.2 | 2,271 | 9/27/2016 |
1.0.0.1 | 2,320 | 9/26/2016 |
1.0.0 | 3,402 | 3/25/2016 |