I'm using Tangosol Coherence v3.2.2b371. Can I cache objects that do not implement Serializable through the NamedCache api? Or this depends on configuration?


Edit: For clarification, I'm trying to cache compiled javax.xml.xpath.XPathExpression objects.

link|improve this question

78% accept rate
feedback

3 Answers

up vote 2 down vote accepted

To store an object in the cache it must be serializable but does not have to implement Serializable. Specifically, it can use POF which is more efficient in time and memory than Serializable.

POF does require some additional configuration, which is described in the article I linked to.

link|improve this answer
Hi, the tangosol docs you linked state that POF starts with Coherence 3.2, and not 3.4. – Miguel Ping Jul 24 '09 at 7:42
You're right. POF was introduced in 3.2. I fixed my answer. I've only worked with 3.4 and 3.5. – David G Jul 24 '09 at 12:41
feedback

I'm guessing (just guessing) that the answer is "no". However, do take a look at the PortableObject interface. This is supposed to be an alternative to java.io.Serializable, but for performance reasons. You should check whether it can be used to replace Serializable interface.

PortableObject JavaDoc

link|improve this answer
feedback

Coherence can cache non-Serializable but POF-aware (either PortableObject or one having a registered PofSerializer) objects starting with 3.4.

Before that POF (or any other custom Serializer for that matter) was not usable as a storage (within the backing map) and tranport format within the cluster (on the TCMP protocol), it was only used as a transport protocol in TCP*Extend.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.