Each time you store something in memcached via enyim, the .NET runtime will binary-serialize the stored object. And deserialization upon receipt. For some types (string, byte [] and some others), enyim implements a more specific and easy serialization, but most types are serialized with the standard BinaryFormatter. This is the processor intensity.
This is especially painful when your code is written in memory cache in ASP.NET. You will probably have a code that believes that getting something from the cache is free. You can get it from the cache again and again and again. We had comparable problems when we switched to memcached. If you do profiling, you will probably find that you are doing insanely many reads from the cache.
enyim . memcached ASP.NET 10 . ( ) in-memory ASP.NET.