<?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: Zend_Search_Lucene Tips</title>
	<atom:link href="http://robertelwell.info/blog/zend_search_lucene-tips/feed/" rel="self" type="application/rss+xml" />
	<link>http://robertelwell.info/blog/zend_search_lucene-tips/</link>
	<description>PHP Web Development, Computational Linguistics, and Nerdy Miscellany</description>
	<lastBuildDate>Fri, 09 Sep 2011 11:42:29 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
	<item>
		<title>By: Lachlan Pease</title>
		<link>http://robertelwell.info/blog/zend_search_lucene-tips/#comment-974</link>
		<dc:creator>Lachlan Pease</dc:creator>
		<pubDate>Fri, 09 Sep 2011 11:42:29 +0000</pubDate>
		<guid isPermaLink="false">http://robertelwell.info/blog/?p=16#comment-974</guid>
		<description>An excellent article that I&#039;ll certainly be leveraging, and recommending to anyone interested in full-text search in PHP. I might recommend, however, that you use the following implementation of My_Filter_Searchable - it should be faster (even if only marginally), and use less memory.

&lt;code&gt;
class My_Filter_Searchable extends Zend_Filter
{
    public function __construct() {
        parent::__construct();
        $this-&gt;addFilter(&#039;StripTags&#039;)
             -&gt;addFilter(&#039;Alnum&#039;)
             -&gt;addFilter(&#039;StringTrim&#039;)
             -&gt;addFilter(&#039;StringToLower&#039;);
    }
}
&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>An excellent article that I&#8217;ll certainly be leveraging, and recommending to anyone interested in full-text search in PHP. I might recommend, however, that you use the following implementation of My_Filter_Searchable &#8211; it should be faster (even if only marginally), and use less memory.</p>
<p><code><br />
class My_Filter_Searchable extends Zend_Filter<br />
{<br />
    public function __construct() {<br />
        parent::__construct();<br />
        $this-&gt;addFilter('StripTags')<br />
             -&gt;addFilter('Alnum')<br />
             -&gt;addFilter('StringTrim')<br />
             -&gt;addFilter('StringToLower');<br />
    }<br />
}<br />
</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Zend_Search_Lucene Tips &#171; madclog.nl</title>
		<link>http://robertelwell.info/blog/zend_search_lucene-tips/#comment-960</link>
		<dc:creator>Zend_Search_Lucene Tips &#171; madclog.nl</dc:creator>
		<pubDate>Thu, 16 Jun 2011 08:26:12 +0000</pubDate>
		<guid isPermaLink="false">http://robertelwell.info/blog/?p=16#comment-960</guid>
		<description>[...] Found a good article with some tips on implementing Zend Framework&#8217;s search engine: Lucene http://robertelwell.info/blog/zend_search_lucene-tips/   Share and [...]</description>
		<content:encoded><![CDATA[<p>[...] Found a good article with some tips on implementing Zend Framework&#8217;s search engine: Lucene <a href="http://robertelwell.info/blog/zend_search_lucene-tips/" rel="nofollow">http://robertelwell.info/blog/zend_search_lucene-tips/</a>   Share and [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

