serialize « memcached « Java Database Q&A





1. Java based memcached client, optimization of putting data inside memcache    stackoverflow.com

I have say list of 1000 beans which I need to share among different projects. I use memcache for this purpose. Currently, loop is run over complete list and each bean ...

2. Memcache Serializable JSONObject?    stackoverflow.com

I'm using json.org JSONObject. I've tried to serialize it to memcache and got the not so cool java.io.NotSerializableException: org.json.JSONObject. Looking at the JSONObject code it seems that it's nothing ...

3. cache required serialized object    stackoverflow.com

I try to store (List-> with many pojo objects) into memcache. the requirement is the value(object) need to implements serializable. is there any technique to use memcache.put(value) , without required ...