<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.2" -->
<rss version="2.0" 
	xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
	<title>Comments on: Specific Indexing</title>
	<link>http://www.kimchy.org/specific-indexing/</link>
	<description>Here we go. Here comes the Prozac</description>
	<pubDate>Sun, 06 Jul 2008 05:35:46 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.2</generator>

	<item>
		<title>By: Ben Dotte</title>
		<link>http://www.kimchy.org/specific-indexing/#comment-3751</link>
		<author>Ben Dotte</author>
		<pubDate>Wed, 02 Apr 2008 17:56:01 +0000</pubDate>
		<guid>http://www.kimchy.org/specific-indexing/#comment-3751</guid>
		<description>Awesome.. I've had requests for this feature from co-workers many times. Thanks Shay!</description>
		<content:encoded><![CDATA[<p>Awesome.. I&#8217;ve had requests for this feature from co-workers many times. Thanks Shay!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Maurice Nicholson</title>
		<link>http://www.kimchy.org/specific-indexing/#comment-3553</link>
		<author>Maurice Nicholson</author>
		<pubDate>Sat, 22 Mar 2008 17:48:52 +0000</pubDate>
		<guid>http://www.kimchy.org/specific-indexing/#comment-3553</guid>
		<description>Actually I just checked the code and Person.indexAll() isn't supported for performance reasons! My bad.

So I definitely need this feature in the plugin :-)</description>
		<content:encoded><![CDATA[<p>Actually I just checked the code and Person.indexAll() isn&#8217;t supported for performance reasons! My bad.</p>
<p>So I definitely need this feature in the plugin :-)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Shay Banon</title>
		<link>http://www.kimchy.org/specific-indexing/#comment-3551</link>
		<author>Shay Banon</author>
		<pubDate>Sat, 22 Mar 2008 16:25:23 +0000</pubDate>
		<guid>http://www.kimchy.org/specific-indexing/#comment-3551</guid>
		<description>Interesting... . How do you implement Person.indexAll()? Is it similar to what suggested in this blog post?</description>
		<content:encoded><![CDATA[<p>Interesting&#8230; . How do you implement Person.indexAll()? Is it similar to what suggested in this blog post?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Maurice Nicholson</title>
		<link>http://www.kimchy.org/specific-indexing/#comment-3549</link>
		<author>Maurice Nicholson</author>
		<pubDate>Sat, 22 Mar 2008 16:03:27 +0000</pubDate>
		<guid>http://www.kimchy.org/specific-indexing/#comment-3549</guid>
		<description>Actually the Grails Searchable Plugin already has quite rich index management capabilities ;-)

It is possible to do stuff like:

Person.indexAll() // indexes all Person instances
Person.unindexAll() removes all Person instances from the index

person.index() // indexes a specific Person instance

Person.index(john, mary, kate) // indexes specific instances
Person.index(1l, 2l, 3l) // indexes specific instances by id

searchableService.reindexAll() // do a complete index (using compassGps.index())

searchableService.index([class: Post], 1l, 2l, 3l) // index specific instances of Post by id using the service interface

And more...

See http://grails.org/Searchable+Plugin+-+Managing+the+index</description>
		<content:encoded><![CDATA[<p>Actually the Grails Searchable Plugin already has quite rich index management capabilities ;-)</p>
<p>It is possible to do stuff like:</p>
<p>Person.indexAll() // indexes all Person instances<br />
Person.unindexAll() removes all Person instances from the index</p>
<p>person.index() // indexes a specific Person instance</p>
<p>Person.index(john, mary, kate) // indexes specific instances<br />
Person.index(1l, 2l, 3l) // indexes specific instances by id</p>
<p>searchableService.reindexAll() // do a complete index (using compassGps.index())</p>
<p>searchableService.index([class: Post], 1l, 2l, 3l) // index specific instances of Post by id using the service interface</p>
<p>And more&#8230;</p>
<p>See <a href="http://grails.org/Searchable+Plugin+-+Managing+the+index" rel="nofollow">http://grails.org/Searchable+Plugin+-+Managing+the+index</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Wayne Young</title>
		<link>http://www.kimchy.org/specific-indexing/#comment-3514</link>
		<author>Wayne Young</author>
		<pubDate>Fri, 21 Mar 2008 15:01:13 +0000</pubDate>
		<guid>http://www.kimchy.org/specific-indexing/#comment-3514</guid>
		<description>This is awesome work!</description>
		<content:encoded><![CDATA[<p>This is awesome work!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Shay Banon</title>
		<link>http://www.kimchy.org/specific-indexing/#comment-3505</link>
		<author>Shay Banon</author>
		<pubDate>Fri, 21 Mar 2008 10:20:42 +0000</pubDate>
		<guid>http://www.kimchy.org/specific-indexing/#comment-3505</guid>
		<description>Yes, that is basically what it does.</description>
		<content:encoded><![CDATA[<p>Yes, that is basically what it does.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lukas Vlcek</title>
		<link>http://www.kimchy.org/specific-indexing/#comment-3498</link>
		<author>Lukas Vlcek</author>
		<pubDate>Fri, 21 Mar 2008 08:22:23 +0000</pubDate>
		<guid>http://www.kimchy.org/specific-indexing/#comment-3498</guid>
		<description>Shay, what is the reason for such function? If I am not mistaken the Compass indexes all classes having specific annotation (while these classes also have to be added into classMappings list). Does it mean that I can use this new function to force complete re-indexing data for specific class only (and this class has to have annotation and is included in the mappings list - of course)? In other words this function allows me to rebuild portion (aka subindex) of whole index from the scratch, correct? Is there any other use case?</description>
		<content:encoded><![CDATA[<p>Shay, what is the reason for such function? If I am not mistaken the Compass indexes all classes having specific annotation (while these classes also have to be added into classMappings list). Does it mean that I can use this new function to force complete re-indexing data for specific class only (and this class has to have annotation and is included in the mappings list - of course)? In other words this function allows me to rebuild portion (aka subindex) of whole index from the scratch, correct? Is there any other use case?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
