How to write a search engine? - Stack Overflow most recent 30 from stackoverflow.com 2010-03-22T02:26:52Z http://stackoverflow.com/feeds/question/1016799 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1016799/how-to-write-a-search-engine 2 How to write a search engine? m.u.sheikh http://stackoverflow.com/users/58948 2009-06-19T07:47:35Z 2009-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#1016808 1 Answer by Greg Hewgill for How to write a search engine? Greg Hewgill http://stackoverflow.com/users/893 2009-06-19T07:50:12Z 2009-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#1016811 5 Answer by Michał Chaniewski for How to write a search engine? Michał Chaniewski http://stackoverflow.com/users/119800 2009-06-19T07:52:30Z 2009-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#1016813 2 Answer by Eli Bendersky for How to write a search engine? Eli Bendersky http://stackoverflow.com/users/8206 2009-06-19T07:53:14Z 2009-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#1016827 2 Answer by Timothy Chung for How to write a search engine? Timothy Chung http://stackoverflow.com/users/46971 2009-06-19T07:57:58Z 2009-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#1017665 0 Answer by bill for How to write a search engine? bill http://stackoverflow.com/users/121958 2009-06-19T12:20:49Z 2009-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#1017715 1 Answer by kervin for How to write a search engine? kervin http://stackoverflow.com/users/16549 2009-06-19T12:32:50Z 2009-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&amp;field-keywords=information%2Bretrieval" rel="nofollow">well written about</a>. </p> http://stackoverflow.com/questions/1016799/how-to-write-a-search-engine/1017748#1017748 3 Answer by James McMahon for How to write a search engine? James McMahon http://stackoverflow.com/users/20774 2009-06-19T12:38:59Z 2009-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&amp;isbn=0596529325" alt="book cover" /></p> <p>Specifically <a href="http://books.google.com/books?id=fEsZ3Ey-Hq4C&amp;lpg=PP1&amp;dq=programming%20collective%20intelligence&amp;pg=PA54" rel="nofollow">Chapter 4: Search and Ranking</a>.</p>