public static IndexSearcher getSearcher ( String companyId ) throws IOException {
Directory directory = FSDirectory.open( new File( getLuceneDir( companyId ) ) );
DirectoryReader ireader = DirectoryReader.open( directory );
return new IndexSearcher( ireader );
}