Skip to main content

Posts

Showing posts with the label lucene

PIPILIKA the Bangla Search Engine

It is nearly 2 years since we attend our University and work for such a great project like SEARCH Engine. All the more it is also language specific .It works with bangla search with meaningful search following context. In this great project I work on making a distributed Index by hadoop.Our work was on thesis level, which is later implemented.All the more when we see the beta release version of our little child PIPILIKA it energies our  every living orgasm of my body. The release date is fixed on April 13 6.30 pm BD time.Venue is Shonar bangla hotel (Sheratoon) .We will attend as we are invited for working on this project .Keep eye on this search engine before it becomes a giant. Link PIPILIKA.COM

Desktop Inside Document Searcher

While I was working with lucene I tried to analyze it for the purpose of creating a demo search engine . From That I got the plan to make a search tool for pc which will search in .txt , .cpp,.pdf,.ppt,.doc as search engine do. Like If I have written sieve or kmp in any file my tool will find it ,rank it and give the location .After finding location just paste it in the explorer and it will give you the particular file. Work Flow : 1.Indexed the particular drive. 2.Then search option enable 3. Give the input string for search 4.Output will be given rank wise in an area. 5. Copy the link and paste it to the explorer. 6.Cheachk is this you need. There are three classes 1.RS.java (Main Class) 2.Indexer.java 3.Searcher.java You must have to add the api of lucene here. Rs.java /**  * @  *  *  * @author sharma  * @version 1.00 2010/7/16  */ import java.io.BufferedInputStream; import java.io.IOException; import java.ne...

How to compile or Run lucene Indexer source code in windows.

1.First extract lucene 1.9.0 src.zip. 2.Then Create class by Jcreator pro.Which is Indexer.java. 3.Save this file to \lucene-1.9-final\src\java folder of lucene. 4.Add these things to import-----> import org.apache.lucene.analysis.standard.*; import org.apache.lucene.document.Document; import org.apache.lucene.document.Field; import org.apache.lucene.index.IndexWriter; import org.apache.lucene.queryParser.ParseException; import org.apache.lucene.queryParser.QueryParser; import org.apache.lucene.search.*; import org.apache.lucene.store.Directory; import org.apache.lucene.store.RAMDirectory; import java.io.FileReader; import java.io.IOException; in .java top. 5.Now run it or compile it so class is create. 6.This is comand based code,so compile it from cmd. for cmd compilation >>> 1.Go to the disc it contain by   C:\Documents and Settings\sharma>D: 2. D:\>  cd D:\lucene-1.9-final\src\java       ...