cannot retrieve the values of a field is not stored in the index

2009-06-04 Thread Alex Steward
Hi,   Is there a way I can retrieve the value of a field that is not stored in the Index? private static void indexFile(IndexWriter writer, File f)     throws IOException {     if (f.isHidden() || !f.exists() || !f.canRead()) {   return;     }     System.out.println("Indexing " + f.getC

Re: lucene code changes

2009-05-19 Thread Alex Steward
 I have a need to implement an custom inverted index in Lucene. I have files like the ones I have attached here. The Files have words and and scores assigned to that word. There will 100's of such files. Each file will have atleast 5 such name value pairs. Note: Currently the file only shows

lucene source code changes

2009-05-19 Thread Alex Steward
Hello,  I have a need to implement an custom inverted index in Lucene. I have files like the ones I have attached here. The Files have words and and scores assigned to that word. There will 100's of such files. Each file will have atleast 5 such name value pairs. Note: Currently the file onl