> I have already implemented in my application using annotations.
> and some changes to query input in my application.
How has it worked out for you?
> I don't see where you provide Analyzer annotation. It seems u forgot it.
Not forgotten (though it could make a good addition); the intention is
ons [mailto:[EMAIL PROTECTED]
> Sent: Thursday, March 09, 2006 3:50 PM
> To: java-user@lucene.apache.org
> Subject: [ANN] Searchable 0.6.2 - Annotations for Lucene
>
> Searchable is a toolkit for Lucene that harnesses the power
> of annotations to specify what properties to index and
Searchable is a toolkit for Lucene that harnesses the power of
annotations to specify what properties to index and how to treat them.
A sample annotated interface:
public interface Sample extends Searchable {
public Integer getId();
@Indexed(boost=2.0F)
public String getName();
@Indexed