<?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: Getting Started with Payloads</title>
	<atom:link href="http://www.lucidimagination.com/blog/2009/08/05/getting-started-with-payloads/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.lucidimagination.com/blog/2009/08/05/getting-started-with-payloads/</link>
	<description>Exclusively dedicated to Apache Lucene/Solr open source search technology</description>
	<lastBuildDate>Wed, 01 Sep 2010 15:59:01 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: Grant Ingersoll</title>
		<link>http://www.lucidimagination.com/blog/2009/08/05/getting-started-with-payloads/comment-page-1/#comment-5062</link>
		<dc:creator>Grant Ingersoll</dc:creator>
		<pubDate>Fri, 18 Jun 2010 15:37:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.lucidimagination.com/blog/?p=884#comment-5062</guid>
		<description>Hi Peter,

Payloads would work fine for that.  You will need to use TermPositions to access it or SpanQuery if you want to get the actual payload out at some point other than as part of a search.</description>
		<content:encoded><![CDATA[<p>Hi Peter,</p>
<p>Payloads would work fine for that.  You will need to use TermPositions to access it or SpanQuery if you want to get the actual payload out at some point other than as part of a search.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter Wilkins</title>
		<link>http://www.lucidimagination.com/blog/2009/08/05/getting-started-with-payloads/comment-page-1/#comment-5061</link>
		<dc:creator>Peter Wilkins</dc:creator>
		<pubDate>Fri, 18 Jun 2010 15:03:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.lucidimagination.com/blog/?p=884#comment-5061</guid>
		<description>In your example you use payloads to add metadata to a term.  The metadata you add is weight, which is used to change a term&#039;s weight when returned in a search result.  

I have a different usecase and I&#039;d like you to comment whether my usecase is consistent with the intended use of the payload feature.

Specifically, I&#039;d like to store a video transcript time-code with each term (the timecode is the number of milliseconds of elapsed time from the start of the video where the term occurs).  the timecode is not data that affects Lucene&#039;s indexing or searching behavior, rather it is simply data I want associated with the term.</description>
		<content:encoded><![CDATA[<p>In your example you use payloads to add metadata to a term.  The metadata you add is weight, which is used to change a term&#8217;s weight when returned in a search result.  </p>
<p>I have a different usecase and I&#8217;d like you to comment whether my usecase is consistent with the intended use of the payload feature.</p>
<p>Specifically, I&#8217;d like to store a video transcript time-code with each term (the timecode is the number of milliseconds of elapsed time from the start of the video where the term occurs).  the timecode is not data that affects Lucene&#8217;s indexing or searching behavior, rather it is simply data I want associated with the term.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Grant Ingersoll</title>
		<link>http://www.lucidimagination.com/blog/2009/08/05/getting-started-with-payloads/comment-page-1/#comment-5012</link>
		<dc:creator>Grant Ingersoll</dc:creator>
		<pubDate>Mon, 07 Jun 2010 12:26:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.lucidimagination.com/blog/?p=884#comment-5012</guid>
		<description>Hi Arpit,

Unfortunately, there is no Query Parser support yet, but see https://issues.apache.org/jira/browse/SOLR-1337</description>
		<content:encoded><![CDATA[<p>Hi Arpit,</p>
<p>Unfortunately, there is no Query Parser support yet, but see <a href="https://issues.apache.org/jira/browse/SOLR-1337" rel="nofollow">https://issues.apache.org/jira/browse/SOLR-1337</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Arpit</title>
		<link>http://www.lucidimagination.com/blog/2009/08/05/getting-started-with-payloads/comment-page-1/#comment-5011</link>
		<dc:creator>Arpit</dc:creator>
		<pubDate>Mon, 07 Jun 2010 06:54:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.lucidimagination.com/blog/?p=884#comment-5011</guid>
		<description>Hey, Grant
Its a great article. After reading it, i feel payload can have many applications. But One thing i was not able to figure out, in the article u are using a specific term to query. How can i use it with query parser so that i can search multiple terms.</description>
		<content:encoded><![CDATA[<p>Hey, Grant<br />
Its a great article. After reading it, i feel payload can have many applications. But One thing i was not able to figure out, in the article u are using a specific term to query. How can i use it with query parser so that i can search multiple terms.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ajay</title>
		<link>http://www.lucidimagination.com/blog/2009/08/05/getting-started-with-payloads/comment-page-1/#comment-4572</link>
		<dc:creator>Ajay</dc:creator>
		<pubDate>Mon, 19 Apr 2010 13:23:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.lucidimagination.com/blog/?p=884#comment-4572</guid>
		<description>Thanks Grant I am able to manage getpayload value using TermPosition class but now I am having one issue. I have document with doc_id and Title and I want to get payload for a given term in a given document but current API&#039;s takes input as term only. There is no parameter for document id.
API example:
Term t = new Term(&quot;Title&quot;, &quot;Java&quot;);
TermPositions positions = ir.termPositions(t)

I want to iterate for all documents and wants to get payload for each document separately. Is there any API available ?</description>
		<content:encoded><![CDATA[<p>Thanks Grant I am able to manage getpayload value using TermPosition class but now I am having one issue. I have document with doc_id and Title and I want to get payload for a given term in a given document but current API&#8217;s takes input as term only. There is no parameter for document id.<br />
API example:<br />
Term t = new Term(&#8220;Title&#8221;, &#8220;Java&#8221;);<br />
TermPositions positions = ir.termPositions(t)</p>
<p>I want to iterate for all documents and wants to get payload for each document separately. Is there any API available ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Grant Ingersoll</title>
		<link>http://www.lucidimagination.com/blog/2009/08/05/getting-started-with-payloads/comment-page-1/#comment-4567</link>
		<dc:creator>Grant Ingersoll</dc:creator>
		<pubDate>Mon, 19 Apr 2010 00:42:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.lucidimagination.com/blog/?p=884#comment-4567</guid>
		<description>Ajay,

Have a look at the TermPositions class, either that or Span.getPayload()</description>
		<content:encoded><![CDATA[<p>Ajay,</p>
<p>Have a look at the TermPositions class, either that or Span.getPayload()</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Payload Example for Lucene 3.0.0 : 28</title>
		<link>http://www.lucidimagination.com/blog/2009/08/05/getting-started-with-payloads/comment-page-1/#comment-4564</link>
		<dc:creator>Payload Example for Lucene 3.0.0 : 28</dc:creator>
		<pubDate>Sun, 18 Apr 2010 19:23:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.lucidimagination.com/blog/?p=884#comment-4564</guid>
		<description>[...] using BoostTermQuery but I am not able to extract payload value. I am using example mention in http://www.lucidimagination.com/blog/2009/08/05/getting-started-with-payloads/comment-page-1/#commen... Could you please help me to get payload value ? Related Posts:Term offsets for highlighting         [...]</description>
		<content:encoded><![CDATA[<p>[...] using BoostTermQuery but I am not able to extract payload value. I am using example mention in <a href="http://www.lucidimagination.com/blog/2009/08/05/getting-started-with-payloads/comment-page-1/#commen.." rel="nofollow">http://www.lucidimagination.com/blog/2009/08/05/getting-started-with-payloads/comment-page-1/#commen..</a>. Could you please help me to get payload value ? Related Posts:Term offsets for highlighting         [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ajay</title>
		<link>http://www.lucidimagination.com/blog/2009/08/05/getting-started-with-payloads/comment-page-1/#comment-4563</link>
		<dc:creator>Ajay</dc:creator>
		<pubDate>Sun, 18 Apr 2010 19:13:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.lucidimagination.com/blog/?p=884#comment-4563</guid>
		<description>Hi Grant,
Thanks for the reply. PayTermQuery works now but I also wants to get some API to get scorepayload value which is currently getting printed in searcher.explain(query, doc.doc) but I want something like getPayLoadValue() which will return payload associated with term. 
is there any open API ?</description>
		<content:encoded><![CDATA[<p>Hi Grant,<br />
Thanks for the reply. PayTermQuery works now but I also wants to get some API to get scorepayload value which is currently getting printed in searcher.explain(query, doc.doc) but I want something like getPayLoadValue() which will return payload associated with term.<br />
is there any open API ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Grant Ingersoll</title>
		<link>http://www.lucidimagination.com/blog/2009/08/05/getting-started-with-payloads/comment-page-1/#comment-4559</link>
		<dc:creator>Grant Ingersoll</dc:creator>
		<pubDate>Sun, 18 Apr 2010 12:35:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.lucidimagination.com/blog/?p=884#comment-4559</guid>
		<description>Ajay,

See http://www.lucidimagination.com/blog/2010/04/18/refresh-getting-started-with-payloads/

I posted an update to this for Lucene 3.0.  If you want the same functionality of the BoostingTermQuery, just use the AveragePayloadFunction.</description>
		<content:encoded><![CDATA[<p>Ajay,</p>
<p>See <a href="http://www.lucidimagination.com/blog/2010/04/18/refresh-getting-started-with-payloads/" rel="nofollow">http://www.lucidimagination.com/blog/2010/04/18/refresh-getting-started-with-payloads/</a></p>
<p>I posted an update to this for Lucene 3.0.  If you want the same functionality of the BoostingTermQuery, just use the AveragePayloadFunction.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lucid Imagination &#187; Refresh: Getting Started with Payloads</title>
		<link>http://www.lucidimagination.com/blog/2009/08/05/getting-started-with-payloads/comment-page-1/#comment-4558</link>
		<dc:creator>Lucid Imagination &#187; Refresh: Getting Started with Payloads</dc:creator>
		<pubDate>Sun, 18 Apr 2010 12:34:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.lucidimagination.com/blog/?p=884#comment-4558</guid>
		<description>[...] Lucid Imagination » Getting Started with Payloads, I introduced the basics of payloads, but that article is now slightly out of date if you are using [...]</description>
		<content:encoded><![CDATA[<p>[...] Lucid Imagination » Getting Started with Payloads, I introduced the basics of payloads, but that article is now slightly out of date if you are using [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
