>Does the MarshalledValue solution implie that my >POJO will be serialized on put and >deserialized on >get. If that is true, it would seriously degrade the >perfomance as >I cache quite large objects.
correct. That's why storing references to the actuall object itself is choosen for the local cache. >Norbert: As a workaround you may include the >classes in the servers classpath, so >the classes do >not have to be reloaded. >That would mean that the those classes cannot be >hotdeployed at all! also correct. As you might see there is no way to have both: Store references to object instances and access them later while having the classes (that might have changed in the meantime) redeployed will never work. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3847002#3847002 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3847002 ------------------------------------------------------- This SF.Net email is sponsored by BEA Weblogic Workshop FREE Java Enterprise J2EE developer tools! Get your free copy of BEA WebLogic Workshop 8.1 today. http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click _______________________________________________ JBoss-Development mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/jboss-development
