while (ts.incrementToken())
{
rSubject.add(termAtt.term());
}
ts = analyzer.tokenStream("educationLevel", new StringReader(doc.get("educationLevel")));
termAtt = ts.addAttribute(TermAttribute.class);
while (ts.incrementToken())
{
rEduLevel.add(termAtt.term());
}