<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Web application step 5: implement a &#8220;relevant&#8221; search engine</title>
	<atom:link href="http://thibauld.com/2009/01/web-application-step-5-implement-a-relevant-search-engine/feed/" rel="self" type="application/rss+xml" />
	<link>http://thibauld.com/2009/01/web-application-step-5-implement-a-relevant-search-engine/</link>
	<description>- Imagination and Execution -</description>
	<lastBuildDate>Tue, 28 Jun 2011 14:58:24 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: tim</title>
		<link>http://thibauld.com/2009/01/web-application-step-5-implement-a-relevant-search-engine/comment-page-1/#comment-34</link>
		<dc:creator>tim</dc:creator>
		<pubDate>Wed, 07 Jan 2009 22:46:48 +0000</pubDate>
		<guid isPermaLink="false">http://thibauld.com/?p=92#comment-34</guid>
		<description>The Yahoo BOSS team came to paris a couple months ago. http://ysearchblog.com/2008/11/17/boss-hack-world-tour-heads-to-europe/

It was a really interesting talk &amp; convinced me that BOSS is the best tool for data aggregation on the web right now. Google doesn&#039;t compete yet. (besides, Google custom search is fairly poor when it comes to features ... Google, your turn now !)</description>
		<content:encoded><![CDATA[<p>The Yahoo BOSS team came to paris a couple months ago. <a href="http://ysearchblog.com/2008/11/17/boss-hack-world-tour-heads-to-europe/" rel="nofollow">http://ysearchblog.com/2008/11/17/boss-hack-world-tour-heads-to-europe/</a></p>
<p>It was a really interesting talk &amp; convinced me that BOSS is the best tool for data aggregation on the web right now. Google doesn&#8217;t compete yet. (besides, Google custom search is fairly poor when it comes to features &#8230; Google, your turn now !)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Thibauld</title>
		<link>http://thibauld.com/2009/01/web-application-step-5-implement-a-relevant-search-engine/comment-page-1/#comment-32</link>
		<dc:creator>Thibauld</dc:creator>
		<pubDate>Wed, 07 Jan 2009 22:23:20 +0000</pubDate>
		<guid isPermaLink="false">http://thibauld.com/?p=92#comment-32</guid>
		<description>Yahoo BOSS looks very interesting indeed, I had never heard about it before! Thanks for the info, I will definitely investigate on this.</description>
		<content:encoded><![CDATA[<p>Yahoo BOSS looks very interesting indeed, I had never heard about it before! Thanks for the info, I will definitely investigate on this.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: tim</title>
		<link>http://thibauld.com/2009/01/web-application-step-5-implement-a-relevant-search-engine/comment-page-1/#comment-29</link>
		<dc:creator>tim</dc:creator>
		<pubDate>Wed, 07 Jan 2009 21:49:14 +0000</pubDate>
		<guid isPermaLink="false">http://thibauld.com/?p=92#comment-29</guid>
		<description>You should give Yahoo BOSS a fair try. No easiest way to search through ALL of your online content (tweets, delicious bookmarks, sites ...)</description>
		<content:encoded><![CDATA[<p>You should give Yahoo BOSS a fair try. No easiest way to search through ALL of your online content (tweets, delicious bookmarks, sites &#8230;)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jan Seidl</title>
		<link>http://thibauld.com/2009/01/web-application-step-5-implement-a-relevant-search-engine/comment-page-1/#comment-28</link>
		<dc:creator>Jan Seidl</dc:creator>
		<pubDate>Tue, 06 Jan 2009 18:00:03 +0000</pubDate>
		<guid isPermaLink="false">http://thibauld.com/?p=92#comment-28</guid>
		<description>Thi,

I&#039;ve worked with keyword index tables that worked pretty nice. You need to populate the index table on insert/update of the field that will be searched for.

Working with LIKE is totally fail, as it slows down and return unrelevant data. With index tables you can have density and thus relevancy!

It&#039;s quite neat and easy to mantain, realtime and quick!

I&#039;ve wrote about it @ my blog about effective data searching, take a look if interested.

[]s!</description>
		<content:encoded><![CDATA[<p>Thi,</p>
<p>I&#8217;ve worked with keyword index tables that worked pretty nice. You need to populate the index table on insert/update of the field that will be searched for.</p>
<p>Working with LIKE is totally fail, as it slows down and return unrelevant data. With index tables you can have density and thus relevancy!</p>
<p>It&#8217;s quite neat and easy to mantain, realtime and quick!</p>
<p>I&#8217;ve wrote about it @ my blog about effective data searching, take a look if interested.</p>
<p>[]s!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Thibauld</title>
		<link>http://thibauld.com/2009/01/web-application-step-5-implement-a-relevant-search-engine/comment-page-1/#comment-26</link>
		<dc:creator>Thibauld</dc:creator>
		<pubDate>Mon, 05 Jan 2009 21:32:08 +0000</pubDate>
		<guid isPermaLink="false">http://thibauld.com/?p=92#comment-26</guid>
		<description>I did not know about Sphinx, thanks for the info. It looks like an attempt to bring MySQL fulltext search capabilities close to PostgreSQL&#039;s ;) No kidding, next time I have to deal with MySQL, I will definitely consider using it.</description>
		<content:encoded><![CDATA[<p>I did not know about Sphinx, thanks for the info. It looks like an attempt to bring MySQL fulltext search capabilities close to PostgreSQL&#8217;s <img src='http://thibauld.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  No kidding, next time I have to deal with MySQL, I will definitely consider using it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Menno</title>
		<link>http://thibauld.com/2009/01/web-application-step-5-implement-a-relevant-search-engine/comment-page-1/#comment-25</link>
		<dc:creator>Menno</dc:creator>
		<pubDate>Mon, 05 Jan 2009 10:34:53 +0000</pubDate>
		<guid isPermaLink="false">http://thibauld.com/?p=92#comment-25</guid>
		<description>Nice writeup about using the full-text capabilities for search. For our custom search-engine we&#039;ve used Sphinx as the backend, it is highly configurable and performs very well. You should definitely check that out as well, as there are many good interfaces for ruby and other languages available.</description>
		<content:encoded><![CDATA[<p>Nice writeup about using the full-text capabilities for search. For our custom search-engine we&#8217;ve used Sphinx as the backend, it is highly configurable and performs very well. You should definitely check that out as well, as there are many good interfaces for ruby and other languages available.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

