I have a requirement where I need to implement memcached (Amazon.ElasticCache and Enyim Cache) with my existing .NET project. There are lot of existing complex objects in the project which i need to store in the cache. what I realzied is that, i need to implement ISerializable and decorate class with [Serializable] attribute. There are lot of Classes in my project which gonna be a tedious task for me implement ISerializable.
I tired just with [Serializable] attribute but it's not adding to cache.
Any suggestions?