I'm working with Enyim.Caching the memcached client for C# the server is http://memcached.org on the last version of ubuntu
MemcachedClient mc = new MemcachedClient();
XmlDocument xmlDocument = new XmlDocument();
mc.Store(StoreMode.Set, "foo", xmlDocument);
object myXml= mc.Get("foo");
and myXml is null, why is there a way to Store my object. The purpose : I'm trying to replace HttpCache in my code for Memcached but with HttpCache I can add complex object to the cache.
Here XmlDocument is an example but with a simple class it doesn't work too