Scripts posted recently tagged to lucene in Kelpi

1- 2 of 2.

lucene merging index

to java lucene by anonymous

import java.io.StringReader;
import org.apache.lucene.analysis.standard.StandardAnalyzer;
import org.apache.lucene.document.Document;
import org.apache.lucene.document.Field;
import org.apache.lucene.index.IndexWriter;

lucene merging index

to java lucene by anonymous

public static void main (String ... args) throws Exception{
		
		IndexWriter iw_temp = new IndexWriter("i.temp",new StandardAnalyzer());
		IndexWriter iw = new IndexWriter("i",new StandardAnalyzer());
		
hits counter