[hibernate-issues] [Hibernate-JIRA] Created: (HHH-3383) QueryKey is storing references to entities instead of identifiers

Manuel Dominguez Sarmiento (JIRA) noreply at atlassian.com
Thu Jul 10 14:36:12 EDT 2008


QueryKey is storing references to entities instead of identifiers
-----------------------------------------------------------------

                 Key: HHH-3383
                 URL: http://opensource.atlassian.com/projects/hibernate/browse/HHH-3383
             Project: Hibernate3
          Issue Type: Improvement
          Components: caching (L2)
    Affects Versions: 3.3.0.CR1
         Environment: ehcache 1.5.0b2
            Reporter: Manuel Dominguez Sarmiento


Context: query caching

Hibernate is storing full entity references when building QueryKeys and the query has restrictions which reference entities. This happens either with Criteria or HQL queries.

Although this is not incorrect, when the referenced entities reference in turn "heavy" object graphs, this causes a very significant memory usage increase, since references to detached entities will remain in the cache. This is even more evident when using disk persistence with ehcache, since the full object graphs are serialized to disk.

This could be easily improved (correct me if I'm wrong) by storing ONLY entity identifiers in the QueryKey instead of full entities, since all the query really needs is the identifier property. The memory usage would decrease dramatically.

So far the workaround we've found is explicitly using restrictions that reference identifiers instead of properties in HQL queries, however this is not particularly elegant, and still leaves open the issue with Criteria queries. The same cannot be done without criteria.createCriteria() which generates an unnecessary join in most cases.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://opensource.atlassian.com/projects/hibernate/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        



More information about the hibernate-issues mailing list