EnyimMemcachedCore 3.1.0
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 3.1.0
NuGet\Install-Package EnyimMemcachedCore -Version 3.1.0
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="3.1.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="EnyimMemcachedCore" Version="3.1.0" />
<PackageReference Include="EnyimMemcachedCore" />
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add EnyimMemcachedCore --version 3.1.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: EnyimMemcachedCore, 3.1.0"
#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.
#:package EnyimMemcachedCore@3.1.0
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=EnyimMemcachedCore&version=3.1.0
#tool nuget:?package=EnyimMemcachedCore&version=3.1.0
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 | 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 is compatible. 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. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net6.0
- MessagePack (>= 2.5.140)
- Newtonsoft.Json.Bson (>= 1.0.2)
-
net7.0
- MessagePack (>= 2.5.140)
- Newtonsoft.Json.Bson (>= 1.0.2)
-
net8.0
- MessagePack (>= 2.5.140)
- Newtonsoft.Json.Bson (>= 1.0.2)
NuGet packages (49)
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 |
|
|
GeneXus.Memcached.Core
Package Description |
|
|
Zicard.API.Common
Bases microservices da Zicard API |
GitHub repositories (6)
Showing the top 6 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
Source Generator based 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
|
|
|
newrelic/newrelic-dotnet-agent
The New Relic .NET language agent.
|
| Version | Downloads | Last Updated |
|---|---|---|
| 3.4.6 | 7,850 | 2/23/2026 |
| 3.4.5 | 171,635 | 9/9/2025 |
| 3.4.4 | 28,977 | 8/10/2025 |
| 3.4.3 | 1,610 | 8/10/2025 |
| 3.4.2 | 1,357 | 8/10/2025 |
| 3.4.1 | 7,627 | 8/4/2025 |
| 3.4.0 | 210,042 | 5/18/2025 |
| 3.3.3-pre2 | 1,923 | 1/24/2025 |
| 3.3.3-pre1 | 191 | 1/24/2025 |
| 3.3.2 | 316,260 | 12/19/2024 |
| 3.3.1 | 33,448 | 12/9/2024 |
| 3.3.0 | 166,800 | 11/23/2024 |
| 3.2.4 | 163,849 | 10/27/2024 |
| 3.2.3 | 380,628 | 9/2/2024 |
| 3.2.2 | 130,973 | 7/31/2024 |
| 3.2.1 | 689,694 | 4/3/2024 |
| 3.2.0 | 183,724 | 2/22/2024 |
| 3.1.0 | 1,996 | 2/21/2024 |
| 3.0.1 | 58,710 | 2/6/2024 |
Loading failed