Memcached2 icon indicating copy to clipboard operation
Memcached2 copied to clipboard

.NET Core 3 version of the C# Memcached client (beta, use at your own risk, PRs/bug reports are welcome)

Results 12 Memcached2 issues
Sort by recently updated
recently updated
newest added

Since many projects have not yet moved to netstandard2.1, it is desirable to make this library a bit more friendly to those projects, leaving them an easy way to move...

var test= await _memcahedClient.DeleteAsync(HandleCacheKey($"{uniqueId}_{key}")); above line code return always false. Does the team have any idea?

Hello Doesn't support complex objects? c is missing in var dictionary ` public class testclass { public string a = "a"; public string b = "a"; } MemcachedClient mc =...

Current implementation is a bit rough when reading it, and trying to follow since it have a lot of event raising/handlining nuances. Microsoft has released a package to support various...

It is very useful to support [IDistributedCache](https://docs.microsoft.com/en-us/dotnet/api/microsoft.extensions.caching.distributed.idistributedcache?view=dotnet-plat-ext-5.0) so that this client is usable in common places where `IDistributedCache` could be used, for instance [ASP.net](https://docs.microsoft.com/en-us/aspnet/core/performance/caching/distributed?view=aspnetcore-5.0) and [Polly caching](https://github.com/App-vNext/Polly.Caching.IDistributedCache)

Do you have a list of items needed in order for this library to leave beta?

I'm not able to run the basic implementation, the next exception appears: Enyim.Caching.SerializationException: 'Exception 'Type 'f__AnonymousType0`1[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]' in Assembly 'MemCached2App1, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null' is not marked as...

private uint DoSerialize(SequenceBuilder output, object? value) { var tmpByteArray = MessagePackSerializer.Serialize(value); new SegmentedStream(output).Write(tmpByteArray, 0, tmpByteArray.Length); return RawDataFlag; } private object? DoDeserialize(ReadOnlyMemory data, uint flags) { return MessagePackSerializer.Deserialize(data.ToArray()); } ``` string...

Yo! I'm poking around for actively development memcached clients looking for some feedback for ASCII protocol changes. Looks like you've recently been redoing the old .Net client, neat! memcached/memcached#484 -...