Web Development  >>  Ruby On Rails

Creating a search engine in eight minutes

Language : English Quality : High Has Audio : true Source : Other Media : n/a
In eight minutes, we go from scratch to a complete Google-killing enterprise-class search engine. But since the actual application only took 76,417 lines to complete, we also have time to play a hearty game of minesweeper

Tags: Ruby On Rails, Ruby, Web Development, Search Engine,     [SUGGEST  A  TAG]

Resources referenced in this screencast
  • Ruby on Rails
  • Search engine



  • Articles Realted to this Topic

    [SUGGEST  A  ARTICLE]
    A simple full-text search engine in 200 lines of Ruby
    I decided to write a straightforward full-text engine using suffix arrays, and the very first (utterly naïve) implementation was already fast enough for FastRI: taking ~10 seconds to index some 40 gems and the stdlib documentation, I was getting sub-millisecond query times
    Full text search in Ruby on Rails
    These days, each web application needs a full text search. Fortunately, there is several handy technologies one can use - native MySQL full text index, Google search, Ferret (ruby port of Lucene) and probably lot more I did not investigate