// the cache, so we can accurately measure performance speed
// per: http://wiki.apache.org/lucene-java/ImproveSearchingSpeed
indexSearcher.search(new AnalyzingQueryParser(Version.LUCENE_4_9, INDEX_NAME.key(),
INDEX_ANALYZER).parse("Reston"), null, DEFAULT_MAX_RESULTS, POPULATION_SORT);
} catch (ParseException pe) {
throw new ClavinException("Error executing priming query.", pe);
} catch (IOException ioe) {
throw new ClavinException("Error opening gazetteer index.", ioe);
}
}