<?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 for ~pperalta</title>
	<atom:link href="http://blackbeanbag.net/wp/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://blackbeanbag.net/wp</link>
	<description>Thoughts on software development and other stuff</description>
	<lastBuildDate>Fri, 20 Nov 2009 17:39:20 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Log file management in Coherence using Log4J by Phil Whelan</title>
		<link>http://blackbeanbag.net/wp/2009/01/14/log-file-management-in-coherence-using-log4j/comment-page-1/#comment-4170</link>
		<dc:creator>Phil Whelan</dc:creator>
		<pubDate>Fri, 20 Nov 2009 17:39:20 +0000</pubDate>
		<guid isPermaLink="false">http://blackbeanbag.net/wp/?p=92#comment-4170</guid>
		<description>Exactly what I needed. Thanks!</description>
		<content:encoded><![CDATA[<p>Exactly what I needed. Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Coherence 3.5: POF Extractor/Updater by Patrick Peralta</title>
		<link>http://blackbeanbag.net/wp/2009/07/21/coherence-3-5-pof-extractorupdater/comment-page-1/#comment-4169</link>
		<dc:creator>Patrick Peralta</dc:creator>
		<pubDate>Fri, 30 Oct 2009 12:51:27 +0000</pubDate>
		<guid isPermaLink="false">http://blackbeanbag.net/wp/?p=287#comment-4169</guid>
		<description>Hi Bansi,

Using a POF extractor/updater implies that you will be querying or modifying a field inside of your object, and you desire to do so without deserializing the object.  For your example, you want to issue a query into the cache for the entire value itself (instead of just a field in the value.)  In this case you would issue a query like so:

cache.keySet(new EqualsFilter(IdentityExtractor.INSTANCE, object))

and you would get back a set of keys that contain this object.</description>
		<content:encoded><![CDATA[<p>Hi Bansi,</p>
<p>Using a POF extractor/updater implies that you will be querying or modifying a field inside of your object, and you desire to do so without deserializing the object.  For your example, you want to issue a query into the cache for the entire value itself (instead of just a field in the value.)  In this case you would issue a query like so:</p>
<p>cache.keySet(new EqualsFilter(IdentityExtractor.INSTANCE, object))</p>
<p>and you would get back a set of keys that contain this object.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Coherence 3.5: POF Extractor/Updater by bansi</title>
		<link>http://blackbeanbag.net/wp/2009/07/21/coherence-3-5-pof-extractorupdater/comment-page-1/#comment-4168</link>
		<dc:creator>bansi</dc:creator>
		<pubDate>Thu, 29 Oct 2009 16:06:25 +0000</pubDate>
		<guid isPermaLink="false">http://blackbeanbag.net/wp/?p=287#comment-4168</guid>
		<description>How would i query on object itself something similar to Hibernate detached criteria. addCriteria(object.class)</description>
		<content:encoded><![CDATA[<p>How would i query on object itself something similar to Hibernate detached criteria. addCriteria(object.class)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Coherence query cache technique using refresh-ahead by Patrick Peralta</title>
		<link>http://blackbeanbag.net/wp/2008/09/28/coherence-query-cache-technique/comment-page-1/#comment-4122</link>
		<dc:creator>Patrick Peralta</dc:creator>
		<pubDate>Sat, 03 Oct 2009 23:59:23 +0000</pubDate>
		<guid isPermaLink="false">http://blackbeanbag.net/wp/?p=77#comment-4122</guid>
		<description>Hi Vikas,

Thanks for your comments.  There is some overlapping functionality between this and CQC.  Here are the ways in which they differ:

1. CQC will register a map listener internally, thus ensuring the client gets the update right away, whereas the query cache will be stale for a period of time.

2. CQC only accepts one filter at a time, the query cache can be used to cache many filters. 

The CQC is a good choice for clients that need real time access to a subset of data (defined by a single filter), whereas the query cache is a good option for caching commonly executed queries.

Thanks,
Patrick</description>
		<content:encoded><![CDATA[<p>Hi Vikas,</p>
<p>Thanks for your comments.  There is some overlapping functionality between this and CQC.  Here are the ways in which they differ:</p>
<p>1. CQC will register a map listener internally, thus ensuring the client gets the update right away, whereas the query cache will be stale for a period of time.</p>
<p>2. CQC only accepts one filter at a time, the query cache can be used to cache many filters. </p>
<p>The CQC is a good choice for clients that need real time access to a subset of data (defined by a single filter), whereas the query cache is a good option for caching commonly executed queries.</p>
<p>Thanks,<br />
Patrick</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Coherence query cache technique using refresh-ahead by vikas</title>
		<link>http://blackbeanbag.net/wp/2008/09/28/coherence-query-cache-technique/comment-page-1/#comment-4121</link>
		<dc:creator>vikas</dc:creator>
		<pubDate>Fri, 02 Oct 2009 13:57:15 +0000</pubDate>
		<guid isPermaLink="false">http://blackbeanbag.net/wp/?p=77#comment-4121</guid>
		<description>Thanks for sharing this. I like your approach but i thinks its same as CQC( Continious query cache).

Just wondering how is this Continious query cache(CQC).  
Refernces: http://wiki.tangosol.com/display/COH32UG/Continuous+Query

Please let me know your thoughts on this.

Regards
Vikas</description>
		<content:encoded><![CDATA[<p>Thanks for sharing this. I like your approach but i thinks its same as CQC( Continious query cache).</p>
<p>Just wondering how is this Continious query cache(CQC).<br />
Refernces: <a href="http://wiki.tangosol.com/display/COH32UG/Continuous+Query" rel="nofollow">http://wiki.tangosol.com/display/COH32UG/Continuous+Query</a></p>
<p>Please let me know your thoughts on this.</p>
<p>Regards<br />
Vikas</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Next NY Coherence SIG on October 1st by ~pperalta &#187; Blog Archive &#187; Oracle Open World: The most Coherence content under one roof!</title>
		<link>http://blackbeanbag.net/wp/2009/09/17/next-ny-coherence-sig-on-october-1st/comment-page-1/#comment-4106</link>
		<dc:creator>~pperalta &#187; Blog Archive &#187; Oracle Open World: The most Coherence content under one roof!</dc:creator>
		<pubDate>Tue, 22 Sep 2009 21:26:58 +0000</pubDate>
		<guid isPermaLink="false">http://blackbeanbag.net/wp/?p=383#comment-4106</guid>
		<description>[...] Home      &#171; Next NY Coherence SIG on October 1st [...]</description>
		<content:encoded><![CDATA[<p>[...] Home      &laquo; Next NY Coherence SIG on October 1st [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to get an OutOfMemoryError without trying by Patrick Peralta</title>
		<link>http://blackbeanbag.net/wp/2009/08/10/how-to-get-an-outofmemoryerror-without-trying/comment-page-1/#comment-4099</link>
		<dc:creator>Patrick Peralta</dc:creator>
		<pubDate>Mon, 21 Sep 2009 16:11:20 +0000</pubDate>
		<guid isPermaLink="false">http://blackbeanbag.net/wp/?p=312#comment-4099</guid>
		<description>Actually I don&#039;t get an OOME on 1.5 either, just the infinite loop.  I can get it to happen on 1.6.  I have not tried it on other platforms, although the OS X JDK is a derivative of Sun&#039;s.</description>
		<content:encoded><![CDATA[<p>Actually I don&#8217;t get an OOME on 1.5 either, just the infinite loop.  I can get it to happen on 1.6.  I have not tried it on other platforms, although the OS X JDK is a derivative of Sun&#8217;s.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to get an OutOfMemoryError without trying by Salman Ahmed</title>
		<link>http://blackbeanbag.net/wp/2009/08/10/how-to-get-an-outofmemoryerror-without-trying/comment-page-1/#comment-4098</link>
		<dc:creator>Salman Ahmed</dc:creator>
		<pubDate>Mon, 21 Sep 2009 15:28:01 +0000</pubDate>
		<guid isPermaLink="false">http://blackbeanbag.net/wp/?p=312#comment-4098</guid>
		<description>Patrick:

I am NOT able to duplicate this OutOfMemoryError using JDK 1.5 on Windows (1.5.0_20) nor on Linux (1.5.0_19). What gives??!! Is this specific to the OS X JRE?</description>
		<content:encoded><![CDATA[<p>Patrick:</p>
<p>I am NOT able to duplicate this OutOfMemoryError using JDK 1.5 on Windows (1.5.0_20) nor on Linux (1.5.0_19). What gives??!! Is this specific to the OS X JRE?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Two New Coherence Blogs by ~pperalta &#187; Blog Archive &#187; Next NY Coherence SIG on October 1st</title>
		<link>http://blackbeanbag.net/wp/2009/05/27/two-new-coherence-blogs/comment-page-1/#comment-4094</link>
		<dc:creator>~pperalta &#187; Blog Archive &#187; Next NY Coherence SIG on October 1st</dc:creator>
		<pubDate>Thu, 17 Sep 2009 12:35:36 +0000</pubDate>
		<guid isPermaLink="false">http://blackbeanbag.net/wp/?p=206#comment-4094</guid>
		<description>[...] from today) and it promises to be a great event. For those of you who follow my blog, I previously introduced these two gentlemen a few months ago when they started [...]</description>
		<content:encoded><![CDATA[<p>[...] from today) and it promises to be a great event. For those of you who follow my blog, I previously introduced these two gentlemen a few months ago when they started [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on NFJS Boston Day 2 by Patrick Peralta</title>
		<link>http://blackbeanbag.net/wp/2009/09/12/nfjs-boston-day-2/comment-page-1/#comment-4093</link>
		<dc:creator>Patrick Peralta</dc:creator>
		<pubDate>Tue, 15 Sep 2009 22:21:25 +0000</pubDate>
		<guid isPermaLink="false">http://blackbeanbag.net/wp/?p=349#comment-4093</guid>
		<description>Yes, and yes.  Both typos were corrected; thanks for the feedback!</description>
		<content:encoded><![CDATA[<p>Yes, and yes.  Both typos were corrected; thanks for the feedback!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
