//create
Document doc = new Document();
//get value from JDBC ResultSet
doc.add(new LongDocValuesField("LastContactTime", rs.getLong("LastContactTime")));
//....
//Search
Sort sort = new Sort(new SortField("LastContactTime",
SortField.Type.LONG, false));
TopDocs rs = scher.search(query, total, sort);
結果が正しくソートされません。なぜですか? 私はLucene4.0を使用しています