I have a little problem ...
I have a field :
Code:
@Field(index=Index.TOKENIZED, store=Store.YES)
@Transient
@Boost(0.5f) // indexation moitie moins importante que celle des autres champs
private String pleinTexte;
First of all, I don't see the boost factor in lucene indexes :

(1.0 displayed).
Then, I would like to have the value in my indexes but not in database.
In the beginning, I deleted the line
Code:
<property name="pleinTexte" column="PleinTexte" />
in my Mapping.hbm.xml and I deleted setPleinTexte and getPleinTexte methods.
It works, but when I insert a second object, the field documents.pleinText is updated, not added.
The only solution to have 2 different values for 2 different objects is to keep the line in Mapping.hbm.xml (with or without @Transient, there are the 2 values in database). But if I keep the line ... I have values in database :S
I don't know what is the solution. I thought that to remove database values, we must remove the line in Mapping.hbm.xml and add @Transient annotation, but it changed index behaviour :S
Thank you.