Hello,

I have an application where a great many documents may not have any
terms after StandardAnalyzer has had its way with the body. In that
case, depending on some other metadata, I may not wish to add the
document to the index altogether. Is there a way to tell?

i.e., current I'm doing this:

Document doc = new Document();
doc.addField(new Field("body", bodyString, INDEXED | etc));
MyIndexWriter.add(doc);

and I'd like to do this:

Field body = new Field("body", bodyString, INDEXED | etc);
if (body has terms post-analysis) {
  Document doc = new Document();
  doc.addField(body);
  MyIndexWriter.add(doc);
}

Is it possible to do this? I don't mind jumping through some hoops.

Thanks!

Jon
-- 
Jon Stewart, Principal
(646) 719-0317 | j...@lightboxtechnologies.com | Arlington, VA

---------------------------------------------------------------------
To unsubscribe, e-mail: java-user-unsubscr...@lucene.apache.org
For additional commands, e-mail: java-user-h...@lucene.apache.org

Reply via email to