Package com.greplin.lucene.document

Examples of com.greplin.lucene.document.DocumentBuilder


  @Test
  public void testBasics() throws Exception {
    IndexWriter writer = new IndexWriter(this.directory,
        new IndexWriterConfig(
            Version.LUCENE_35, new WhitespaceAnalyzer(Version.LUCENE_35)));
    writer.addDocument(new DocumentBuilder().add("value", "5").build());
    writer.close();

    IndexReader reader = IndexReader.open(this.directory);
    IndexSearcher searcher = new IndexSearcher(reader);
View Full Code Here

TOP

Related Classes of com.greplin.lucene.document.DocumentBuilder

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.