[hibernate-issues] [Hibernate-JIRA] Commented: (HSEARCH-76) Lazy loaded property isn't indexed properly

Christian Bauer (JIRA) noreply at atlassian.com
Tue Jun 12 03:36:04 EDT 2007


    [ http://opensource.atlassian.com/projects/hibernate/browse/HSEARCH-76?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_27221 ] 

Christian Bauer commented on HSEARCH-76:
----------------------------------------

I am using this as a workaround, seems to be smarter anyway because it doesn't trigger the sequential selects:

ScrollableResults cursor = session.createQuery("select o from " + entityClass.getName() + " o fetch all properties").scroll();



> Lazy loaded property isn't indexed properly
> -------------------------------------------
>
>                 Key: HSEARCH-76
>                 URL: http://opensource.atlassian.com/projects/hibernate/browse/HSEARCH-76
>             Project: Hibernate Search
>          Issue Type: Bug
>          Components: engine
>    Affects Versions: 3.0.0.beta3
>            Reporter: Christian Bauer
>
>     @Column(name = "CONTENT")
>     @Length(min = 0, max = 32768)
>     @Basic(fetch = FetchType.LAZY) // Lazy loaded through bytecode instrumentation
>     @org.hibernate.search.annotations.Field(index = org.hibernate.search.annotations.Index.TOKENIZED)
>     private String content;
> I use fulltextSession.index(o) and I only get two terms indexed "text" and "edit". I don't know where these are coming from actually, no object has these content values.
> If I trigger an o.getContent() before fulltextSession.index(o), the content is loaded with sequential selects for the lazy property and correctly indexed.

-- 
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