Creating IndexWriter with RAMDirectory throws System.IO.FileNotFoundException -----------------------------------------------------------------------------
Key: LUCENENET-193 URL: https://issues.apache.org/jira/browse/LUCENENET-193 Project: Lucene.Net Issue Type: Bug Environment: .Net 3.5 Reporter: Anders Lybecker Running the below code results in an System.IO.FileNotFoundException with the message "segments.gen" in the RAMDirectory.OpenInput method. var ram = new Lucene.Net.Store.RAMDirectory(); var writer = new IndexWriter(ram, new StandardAnalyzer(), true); -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.