<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.3.1" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>
<channel>
	<title>Comments on: Zend Lucene Search - part1 - creating index</title>
	<link>http://ganeshhs.com/zend-framework/zend-search-lucene-part1</link>
	<description>Thoughts on open source technologies, search engine optimization, website security</description>
	<pubDate>Wed, 10 Mar 2010 12:48:14 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.1</generator>
		<item>
		<title>By: Gustavo Garcia</title>
		<link>http://ganeshhs.com/zend-framework/zend-search-lucene-part1#comment-8462</link>
		<dc:creator>Gustavo Garcia</dc:creator>
		<pubDate>Sat, 21 Nov 2009 20:55:27 +0000</pubDate>
		<guid>http://ganeshhs.com/zend-framework/zend-search-lucene-part1#comment-8462</guid>
		<description>Hi Ganesh,

Thank you very much for this article.

I'm using Lucene_Search_Lucene for a while in one project, and it was working perfect untill yesterday... I started to get this error message: "Index is under processing now". Have you ever had to deal with it?. I have searched in Google and have seen another cases, but with no answer...

By the way, i'm indexing just user information (10.500 users), like name, last_name, username, and passport.

Every time a user updates his information, the index is updated. But I'm not callig the "optimize" method... (because I didn't know it), do you think it's a method to be called every time a user updates his info or to be called in a batch process executed at night or something?

Well... I hope you can help me! thank you very much!</description>
		<content:encoded><![CDATA[<p>Hi Ganesh,</p>
<p>Thank you very much for this article.</p>
<p>I&#8217;m using Lucene_Search_Lucene for a while in one project, and it was working perfect untill yesterday&#8230; I started to get this error message: &#8220;Index is under processing now&#8221;. Have you ever had to deal with it?. I have searched in Google and have seen another cases, but with no answer&#8230;</p>
<p>By the way, i&#8217;m indexing just user information (10.500 users), like name, last_name, username, and passport.</p>
<p>Every time a user updates his information, the index is updated. But I&#8217;m not callig the &#8220;optimize&#8221; method&#8230; (because I didn&#8217;t know it), do you think it&#8217;s a method to be called every time a user updates his info or to be called in a batch process executed at night or something?</p>
<p>Well&#8230; I hope you can help me! thank you very much!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mahbub</title>
		<link>http://ganeshhs.com/zend-framework/zend-search-lucene-part1#comment-8251</link>
		<dc:creator>Mahbub</dc:creator>
		<pubDate>Tue, 03 Nov 2009 06:10:48 +0000</pubDate>
		<guid>http://ganeshhs.com/zend-framework/zend-search-lucene-part1#comment-8251</guid>
		<description>How do you handle of data being updated. Like i add a lucene document on user creation. I need to update the document when it's edited and may be removed from the index when it's deleted. 

I know how to delete the index with ID, but how to exactly find the document with ID ? Any ideas ?</description>
		<content:encoded><![CDATA[<p>How do you handle of data being updated. Like i add a lucene document on user creation. I need to update the document when it&#8217;s edited and may be removed from the index when it&#8217;s deleted. </p>
<p>I know how to delete the index with ID, but how to exactly find the document with ID ? Any ideas ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vincent</title>
		<link>http://ganeshhs.com/zend-framework/zend-search-lucene-part1#comment-7512</link>
		<dc:creator>Vincent</dc:creator>
		<pubDate>Thu, 20 Aug 2009 10:36:09 +0000</pubDate>
		<guid>http://ganeshhs.com/zend-framework/zend-search-lucene-part1#comment-7512</guid>
		<description>Thank you very much!</description>
		<content:encoded><![CDATA[<p>Thank you very much!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ganesh H S , Bangalore, India</title>
		<link>http://ganeshhs.com/zend-framework/zend-search-lucene-part1#comment-7484</link>
		<dc:creator>Ganesh H S , Bangalore, India</dc:creator>
		<pubDate>Tue, 18 Aug 2009 19:58:45 +0000</pubDate>
		<guid>http://ganeshhs.com/zend-framework/zend-search-lucene-part1#comment-7484</guid>
		<description>Hi Vincent, 
Use a single index, for searchable field for which you are planning title and category, Zend_Search_Lucene_Field::Text. For others you can use based on the data type, for contents use Zend_Search_Lucene_Field::Unstored, for time use Zend_Search_Lucene_Field::UnIndexed</description>
		<content:encoded><![CDATA[<p>Hi Vincent,<br />
Use a single index, for searchable field for which you are planning title and category, Zend_Search_Lucene_Field::Text. For others you can use based on the data type, for contents use Zend_Search_Lucene_Field::Unstored, for time use Zend_Search_Lucene_Field::UnIndexed</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vincent</title>
		<link>http://ganeshhs.com/zend-framework/zend-search-lucene-part1#comment-7482</link>
		<dc:creator>Vincent</dc:creator>
		<pubDate>Tue, 18 Aug 2009 16:44:22 +0000</pubDate>
		<guid>http://ganeshhs.com/zend-framework/zend-search-lucene-part1#comment-7482</guid>
		<description>Hi Ganesh,
If I want to provide another option to user for searching just title and category, should I create another index including "url", "articleid", "time", "title", "category"? Or should I separate the index you created into two indexes, one includeing fields "url", "articleid", "time", "title", "category", the other includeing fields "url", "articleid", "time", "contents"?</description>
		<content:encoded><![CDATA[<p>Hi Ganesh,<br />
If I want to provide another option to user for searching just title and category, should I create another index including &#8220;url&#8221;, &#8220;articleid&#8221;, &#8220;time&#8221;, &#8220;title&#8221;, &#8220;category&#8221;? Or should I separate the index you created into two indexes, one includeing fields &#8220;url&#8221;, &#8220;articleid&#8221;, &#8220;time&#8221;, &#8220;title&#8221;, &#8220;category&#8221;, the other includeing fields &#8220;url&#8221;, &#8220;articleid&#8221;, &#8220;time&#8221;, &#8220;contents&#8221;?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: fei</title>
		<link>http://ganeshhs.com/zend-framework/zend-search-lucene-part1#comment-7243</link>
		<dc:creator>fei</dc:creator>
		<pubDate>Wed, 05 Aug 2009 01:00:34 +0000</pubDate>
		<guid>http://ganeshhs.com/zend-framework/zend-search-lucene-part1#comment-7243</guid>
		<description>thank you very much, Ganesh! :)</description>
		<content:encoded><![CDATA[<p>thank you very much, Ganesh! <img src='http://ganeshhs.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ganesh H S , Bangalore, India</title>
		<link>http://ganeshhs.com/zend-framework/zend-search-lucene-part1#comment-7236</link>
		<dc:creator>Ganesh H S , Bangalore, India</dc:creator>
		<pubDate>Tue, 04 Aug 2009 20:50:28 +0000</pubDate>
		<guid>http://ganeshhs.com/zend-framework/zend-search-lucene-part1#comment-7236</guid>
		<description>fei,
Read this http://framework.zend.com/manual/en/zend.search.lucene.html#zend.search.lucene.index-creation.understanding-field-types for understanding on field types</description>
		<content:encoded><![CDATA[<p>fei,<br />
Read this <a href="http://framework.zend.com/manual/en/zend.search.lucene.html#zend.search.lucene.index-creation.understanding-field-types" rel="nofollow">http://framework.zend.com/manual/en/zend.search.lucene.html#zend.search.lucene.index-creation.understanding-field-types</a> for understanding on field types</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ganesh H S , Bangalore, India</title>
		<link>http://ganeshhs.com/zend-framework/zend-search-lucene-part1#comment-7235</link>
		<dc:creator>Ganesh H S , Bangalore, India</dc:creator>
		<pubDate>Tue, 04 Aug 2009 20:48:05 +0000</pubDate>
		<guid>http://ganeshhs.com/zend-framework/zend-search-lucene-part1#comment-7235</guid>
		<description>John,
Check this tutorial http://ganeshhs.com/zend-framework/zend-lucene-search-part5-search-engine-results-page-formatting</description>
		<content:encoded><![CDATA[<p>John,<br />
Check this tutorial <a href="http://ganeshhs.com/zend-framework/zend-lucene-search-part5-search-engine-results-page-formatting" rel="nofollow">http://ganeshhs.com/zend-framework/zend-lucene-search-part5-search-engine-results-page-formatting</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: oktopus</title>
		<link>http://ganeshhs.com/zend-framework/zend-search-lucene-part1#comment-6911</link>
		<dc:creator>oktopus</dc:creator>
		<pubDate>Sat, 11 Jul 2009 14:13:58 +0000</pubDate>
		<guid>http://ganeshhs.com/zend-framework/zend-search-lucene-part1#comment-6911</guid>
		<description>thanks for the tutorial</description>
		<content:encoded><![CDATA[<p>thanks for the tutorial</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John</title>
		<link>http://ganeshhs.com/zend-framework/zend-search-lucene-part1#comment-6872</link>
		<dc:creator>John</dc:creator>
		<pubDate>Wed, 08 Jul 2009 19:34:10 +0000</pubDate>
		<guid>http://ganeshhs.com/zend-framework/zend-search-lucene-part1#comment-6872</guid>
		<description>Thanks for the article... I am able to get the content in my case html page but unable to display resulst with snippets of the contnets i.e. Google like results any idea how to do that?</description>
		<content:encoded><![CDATA[<p>Thanks for the article&#8230; I am able to get the content in my case html page but unable to display resulst with snippets of the contnets i.e. Google like results any idea how to do that?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
