Re: [hibernate-dev] Caching @EmbeddedId/@Embeddable instances

2012-06-11 Thread Galder Zamarreño
This can be replicated in Hibernate master. The guy had added some unit tests to the Infinispan testsuite that replicated the issue. See https://github.com/galderz/hibernate-orm/tree/t_saugat And try running org.hibernate.test.cache.infinispan.functional.cluster.NonBasicIdInvalidationTestCase

Re: [hibernate-dev] Caching @EmbeddedId/@Embeddable instances

2012-06-08 Thread Steve Ebersole
FYI, for my own remembrance... https://hibernate.onjira.com/browse/HHH-6880 https://hibernate.onjira.com/browse/HHH-6822 On Fri 08 Jun 2012 08:30:08 AM CDT, Steve Ebersole wrote: > I agree. This sounds like the component being serialized as part of > its inclusion in the CacheKey rather than the

Re: [hibernate-dev] Caching @EmbeddedId/@Embeddable instances

2012-06-08 Thread Steve Ebersole
I agree. This sounds like the component being serialized as part of its inclusion in the CacheKey rather than the component being "disassembled". On Fri 08 Jun 2012 08:18:52 AM CDT, Scott Marlow wrote: > I'll be interested to hear which software versions are in use (I just > asked in the below

Re: [hibernate-dev] Caching @EmbeddedId/@Embeddable instances

2012-06-08 Thread Scott Marlow
I'll be interested to hear which software versions are in use (I just asked in the below forum link). On 06/08/2012 08:01 AM, Galder Zamarreño wrote: > > On Jun 8, 2012, at 12:35 PM, Galder Zamarreño wrote: > >> >> On Jun 8, 2012, at 12:26 PM, Galder Zamarreño wrote: >> >>> Hi all, >>> >>> Re: ht

Re: [hibernate-dev] Caching @EmbeddedId/@Embeddable instances

2012-06-08 Thread Galder Zamarreño
On Jun 8, 2012, at 12:35 PM, Galder Zamarreño wrote: > > On Jun 8, 2012, at 12:26 PM, Galder Zamarreño wrote: > >> Hi all, >> >> Re: https://community.jboss.org/message/739399#739399 >> >> This guy's using a combo of @EmbeddedId and @Embeddable in the tests his >> provided, and this is resul

Re: [hibernate-dev] Caching @EmbeddedId/@Embeddable instances

2012-06-08 Thread Galder Zamarreño
On Jun 8, 2012, at 12:26 PM, Galder Zamarreño wrote: > Hi all, > > Re: https://community.jboss.org/message/739399#739399 > > This guy's using a combo of @EmbeddedId and @Embeddable in the tests his > provided, and this is resulting in cache key serialized payloads differing > for identical in

[hibernate-dev] Caching @EmbeddedId/@Embeddable instances

2012-06-08 Thread Galder Zamarreño
Hi all, Re: https://community.jboss.org/message/739399#739399 This guy's using a combo of @EmbeddedId and @Embeddable in the tests his provided, and this is resulting in cache key serialized payloads differing for identical instances. Even in between runs, the last bit of the payload varies. T