资 源 简 介
What is it?
A memcached provider for the DotNetNuke content management system and development framework.
Credits
dotnetnuke-memcached uses the BeIT memcached client (http://code.google.com/p/beitmemcached/) to manage memcached connections and serialization/deserialization of .NET objects. I have slightly modified the BeIT memcached code to allow seralization of POCO objects.
Limitations
dotnetnuke-memcached requires .NET 3.5 sp1. This is due to the need to serialize/deserialize POCO objects. As of .NET 3.5 sp1 the .NET framework supports serialization of POCO(Plain old CLR objects). The requirements of POCO are that the object has a default constructor and only serializes public members of a class. This means that not all existing DotNetNuke modules will work with this provider. If you have the source code you will be able to modify the module to work with memcached. For more information about POCO Aaron Skonnard has written a grea