1. Hibernate Bi-Directional ManyToMany Updates with Second Level cache stackoverflow.comI have a bidirectional many-to-many class:
Now I save a listA into B:
This all works fine until I turn on ... |
2. NHibernate parent-child relationship: does NH update parents in entity cache? stackoverflow.comIf I update a child in a parent-child relationship, the child gets updated in the L2 cache. But what about the parent? Is it possible to do this without hitting the database? Thanks! |
3. second level cache and entity inheritance forum.hibernate.orgDoes Hibernate use the cache for a parent entity if there is no explicit cache for a child entity of the parent? For example, say I have the following. Code: package test; @Entity public class Parent { } @Entity public class Child extends Parent { } |
4. cache mapping element behavior for second level cache forum.hibernate.org |
5. Second level cache and many-to-many mapping forum.hibernate.orgHibernate version:2.x Name and version of the database you are using:Oracle 9x I wonder if anybody ever ran into this situation before. I have a many-to-many association that I need to eager fetch. I have second level caching enable using OSCache. So i set outer-join=true in the |
6. problem overriding mapping (disables 2nd level cache) query forum.hibernate.orgHibernate version: 3.2 Mapping documents: |
7. Problem with 2nd level cache and unidirectional manyToOne forum.hibernate.orgRegular Joined: Mon Aug 20, 2007 6:47 am Posts: 74 Location: UK Hibernate version: 3.2 2nd level cache: ehcache I'm having some difficulty with cached entitys. In particular, when I delete an entity that is the "one" side of a manyToOne unidirectional relationship. Please read the following example, where first of all I define two entities: Address and Person, where Person ... |