Re: support for Payload Feature of lucene in solr

2009-07-15 Thread Grant Ingersoll
Note, also that there are factories for some of the other TokenFilters in the payloads package from contrib/analyzers. On Jul 14, 2009, at 5:55 PM, Grant Ingersoll wrote: The TokenFilterFactory side is trivial for the DelimitedPayloadTokenFilter. That could be in for 1.4. In fact, there

Re: support for Payload Feature of lucene in solr

2009-07-14 Thread Sumit Aggarwal
Hi Shalin, Our requirement is to have a rolling window support for popularity of catalog items for say 3 months. What we used to do we are adding term,value as tokens where term is some unique string for each day and value is popularity count for that day. Once indexing this data as token stream an

Re: support for Payload Feature of lucene in solr

2009-07-14 Thread Grant Ingersoll
The TokenFilterFactory side is trivial for the DelimitedPayloadTokenFilter. That could be in for 1.4. In fact, there is an automated way to generate the stubs that should be run in preparing for a release. I'll see if I can find a minute or two to make that happen. For query support, I

Re: support for Payload Feature of lucene in solr

2009-07-14 Thread Shalin Shekhar Mangar
It may be nice to tell us why you need payloads? There may be other ways of solving your problem than adding payload support to Solr? Anyway, I don't see payload support before 1.5 On Tue, Jul 14, 2009 at 10:07 PM, Sumit Aggarwal wrote: > Hey Nobel, > Any comments on Grant suggestion. > > Thanks,

Re: support for Payload Feature of lucene in solr

2009-07-14 Thread Sumit Aggarwal
Hey Nobel, Any comments on Grant suggestion. Thanks, -Sumit On Tue, Jul 14, 2009 at 8:40 PM, Sumit Aggarwal wrote: > Hi Walter, > I do have a search server where i have implemented things using payload > feature itself. These days i am evaluating solr to get rid of my own search > server. For th

Re: support for Payload Feature of lucene in solr

2009-07-14 Thread Sumit Aggarwal
Hi Walter, I do have a search server where i have implemented things using payload feature itself. These days i am evaluating solr to get rid of my own search server. For that i need payloads feature in solr itself. I raised a related question and got a message from *Grant* as * "**I added a new De

Re: support for Payload Feature of lucene in solr

2009-07-14 Thread Walter Underwood
That doesn't require payloads. I was doing that with Solr 1.1. Define two fields, stemmed and exact, with different analyzer chains. Use copyfield to load the same info into both. With the dismax handler, search both fields with a higher boost on the exact field. wunder On 7/14/09 7:39 AM, "Toby

Re: support for Payload Feature of lucene in solr

2009-07-14 Thread Noble Paul നോബിള്‍ नोब्ळ्
right now Solr does not support indexing/retrieving payloads. Probably this can be taken up as an issue On Tue, Jul 14, 2009 at 5:41 PM, Sumit Aggarwal wrote: > Hi, > As i am new to solr and trying to explore payloads in solr but i haven't got > any success on that. In one of the thread Grant ment

Re: support for Payload Feature of lucene in solr

2009-07-14 Thread Toby Cole
As i am new to solr and trying to explore payloads in solr but i haven't got any success on that. In one of the thread Grant mentioned solr have DelimitedPayloadTokenFilter which can store payloads at index time. But to make search on it we will require implementation of BoostingTermQuery exten

support for Payload Feature of lucene in solr

2009-07-14 Thread Sumit Aggarwal
Hi, As i am new to solr and trying to explore payloads in solr but i haven't got any success on that. In one of the thread Grant mentioned solr have DelimitedPayloadTokenFilter which can store payloads at index time. But to make search on it we will require implementation of BoostingTermQuery exte