How to write a search engine? - Stack Overflow most recent 30 from stackoverflow.com2010-03-22T02:26:52Zhttp://stackoverflow.com/feeds/question/1016799http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1016799/how-to-write-a-search-engine2How to write a search engine?m.u.sheikhhttp://stackoverflow.com/users/589482009-06-19T07:47:35Z2009-06-19T12:52:14Z
<p>I am trying to write a search engine that will give meaningful results when a user enters words that occur within a bunch of documents. For that I want to know how exactly a search engine works, what data structures and algorithms it uses to build indexes, store and query indexes etc. Plus some pointers on how to make a search engine give good results even in case of spelling mistakes. One natural extension that I would want is to allow phonetic search to also work, so that the search also works for documents in transliterated form.</p>
http://stackoverflow.com/questions/1016799/how-to-write-a-search-engine/1016808#10168081Answer by Greg Hewgill for How to write a search engine?Greg Hewgillhttp://stackoverflow.com/users/8932009-06-19T07:50:12Z2009-06-19T07:50:12Z<p>A really simple way to get started is to use something like <a href="http://www.tgries.de/agrep/" rel="nofollow"><code>agrep</code></a>.</p>
http://stackoverflow.com/questions/1016799/how-to-write-a-search-engine/1016811#10168115Answer by Michał Chaniewski for How to write a search engine?Michał Chaniewskihttp://stackoverflow.com/users/1198002009-06-19T07:52:30Z2009-06-19T07:52:30Z<p>You could look at Lucene's documentation - there is a lot on internals in wiki. <a href="http://lucene.apache.org/java/docs/" rel="nofollow">http://lucene.apache.org/java/docs/</a></p>
<p>...or Lucene.NET if you're .NET guy: <a href="http://incubator.apache.org/lucene.net/" rel="nofollow">http://incubator.apache.org/lucene.net/</a></p>
http://stackoverflow.com/questions/1016799/how-to-write-a-search-engine/1016813#10168132Answer by Eli Bendersky for How to write a search engine?Eli Benderskyhttp://stackoverflow.com/users/82062009-06-19T07:53:14Z2009-06-19T07:59:12Z<p>While using grep/agrep is a good starting point, to make an efficient search engine you'll need <a href="http://en.wikipedia.org/wiki/Index%5F%28search%5Fengine%29" rel="nofollow">indexing</a>.</p>
<p>For that, you'll need to learn about some specialized data structures, such as <a href="http://en.wikipedia.org/wiki/Suffix%5Ftree" rel="nofollow">suffix trees</a>, which are very useful for efficient indexing and retrieval of search results. </p>
<p>Here's <a href="http://infolab.stanford.edu/~backrub/google.html" rel="nofollow">Brin's and Page's article</a> about the anatomy of a 'new' search engine (Google) written some years ago. Google now offers even <a href="http://research.google.com/pubs/papers.html" rel="nofollow">more articles</a> about their algorithms.</p>
http://stackoverflow.com/questions/1016799/how-to-write-a-search-engine/1016827#10168272Answer by Timothy Chung for How to write a search engine?Timothy Chunghttp://stackoverflow.com/users/469712009-06-19T07:57:58Z2009-06-19T07:57:58Z<p>Related posts for your reference:</p>
<p>Building a Web Search Engine:</p>
<p><a href="http://stackoverflow.com/questions/112248/building-a-web-search-engine">http://stackoverflow.com/questions/112248/building-a-web-search-engine</a></p>
<p>Open Source Projects for Web Search Engine Components:</p>
<p><a href="http://stackoverflow.com/questions/672476/open-source-projects-for-web-search-engine-components">http://stackoverflow.com/questions/672476/open-source-projects-for-web-search-engine-components</a></p>
http://stackoverflow.com/questions/1016799/how-to-write-a-search-engine/1017665#10176650Answer by bill for How to write a search engine?billhttp://stackoverflow.com/users/1219582009-06-19T12:20:49Z2009-06-19T12:52:14Z<p>Writing a search engine is not a trivial task and that is depending how many documents you want to search. If the number and the size of the documents is not large, then a simple sequential search a la Grep/Glimpse oder a database is enough. Otherwise you must use a library that use an <a href="http://en.wikipedia.org/wiki/Inverted%5Findex" rel="nofollow">inverted-index</a> for indexing and searching. </p>
<p>For documentation you can look at <a href="http://www-csli.stanford.edu/~hinrich/information-retrieval-book.html" rel="nofollow">Introduction to Information Retrieval</a> (available online). </p>
<p>You can also look at:</p>
<ul>
<li><a href="http://lucene.apache.org/java/docs/" rel="nofollow">Lucene</a> full text search engine in java.</li>
<li><a href="http://www.seg.rmit.edu.au/zettair/" rel="nofollow">Zettair</a> simple text search engine in c.</li>
<li>Seach engines for websites like <a href="http://marvinhumphrey.com/kinosearch/" rel="nofollow">A Perl search engine library</a>.</li>
</ul>
http://stackoverflow.com/questions/1016799/how-to-write-a-search-engine/1017715#10177151Answer by kervin for How to write a search engine?kervinhttp://stackoverflow.com/users/165492009-06-19T12:32:50Z2009-06-19T12:32:50Z<p>Research <a href="http://en.wikipedia.org/wiki/Information%5Fretrieval" rel="nofollow">Information Retrieval</a>. The concepts are decades old and very <a href="http://www.amazon.com/s/?url=search-alias%3Daps&field-keywords=information%2Bretrieval" rel="nofollow">well written about</a>. </p>
http://stackoverflow.com/questions/1016799/how-to-write-a-search-engine/1017748#10177483Answer by James McMahon for How to write a search engine?James McMahonhttp://stackoverflow.com/users/207742009-06-19T12:38:59Z2009-06-19T12:38:59Z<p>You should check out the book <a href="http://rads.stackoverflow.com/amzn/click/0596529325" rel="nofollow">Programming Collective Intelligence</a>.</p>
<p><img src="http://www.textbooksrus.com/viewimg.ashx?ft=medium&isbn=0596529325" alt="book cover" /></p>
<p>Specifically <a href="http://books.google.com/books?id=fEsZ3Ey-Hq4C&lpg=PP1&dq=programming%20collective%20intelligence&pg=PA54" rel="nofollow">Chapter 4: Search and Ranking</a>.</p>