Reputation: 389
After doing a set , when i try to get a object from memcached, it gives me a hashed value but i want the values inside the object that was set with set function call...
Anyone having idea how to solve it??
Upvotes: 1
Views: 200
Reputation: 5333
Spymemcached deserializes and decompresses java objects when you get them back from memcached. If you get an Object back then you should be able to type cast it to the corresponding java object.
Upvotes: 1