thanks,Ian.I will try your idea.
2011-10-24
janwen | China
website : http://www.qianpin.com/
From:Ian Lea
Date:2011-10-24 18:01
Subject:Re: custome index rule
To:java-user
Cc:
You can achieve pretty much anything by customizing parsers and
tokenizers but for your simple case I'd just use
You can achieve pretty much anything by customizing parsers and
tokenizers but for your simple case I'd just use String.split() and
add the phrases one by one. Something like
Document d = ...
String[] phrases = sentence,split(",");
for (String phrase : phrases) {
d.add(new Field("phrase", phras