Re: retrieving latest document **only**

2013-01-16 Thread J Mohamed Zahoor
group field is timestamp… it is not multivalued. ./zahoor On 15-Jan-2013, at 7:14 PM, Upayavira wrote: > Is your group field multivalued? Could docs appear in more than one > group? > > Upayavira > > On Tue, Jan 15, 2013, at 01:22 PM, J Mohamed Zahoor wrote: >> >> The sum of all the "count"

Re: retrieving latest document **only**

2013-01-15 Thread Upayavira
Is your group field multivalued? Could docs appear in more than one group? Upayavira On Tue, Jan 15, 2013, at 01:22 PM, J Mohamed Zahoor wrote: > > The sum of all the "count" in the groups… does not match the total no of > docs found. > > ./zahoor > > > On 12-Jan-2013, at 1:27 PM, Upayavira

Re: retrieving latest document **only**

2013-01-15 Thread J Mohamed Zahoor
The sum of all the "count" in the groups… does not match the total no of docs found. ./zahoor On 12-Jan-2013, at 1:27 PM, Upayavira wrote: > Not sure exactly what you mean, can you give an example? > > Upayavira > > On Sat, Jan 12, 2013, at 06:32 AM, J Mohamed Zahoor wrote: >> Cool… it wor

Re: retrieving latest document **only**

2013-01-11 Thread Upayavira
Not sure exactly what you mean, can you give an example? Upayavira On Sat, Jan 12, 2013, at 06:32 AM, J Mohamed Zahoor wrote: > Cool… it worked… But the count of all the groups and the count inside > stats component does not match… > Is that a bug? > > ./zahoor > > > On 11-Jan-2013, at 6:48 PM

Re: retrieving latest document **only**

2013-01-11 Thread J Mohamed Zahoor
Cool… it worked… But the count of all the groups and the count inside stats component does not match… Is that a bug? ./zahoor On 11-Jan-2013, at 6:48 PM, Upayavira wrote: > could you use field collapsing? Boost by date and only show one value > per group, and you'll have the most recent docum

Re: retrieving latest document **only**

2013-01-11 Thread Upayavira
could you use field collapsing? Boost by date and only show one value per group, and you'll have the most recent document only. Upayavira On Fri, Jan 11, 2013, at 01:10 PM, jmozah wrote: > one crude way is first query and pick the latest date from the result > then issue a query with q=timestamp[

Re: retrieving latest document **only**

2013-01-11 Thread jmozah
one crude way is first query and pick the latest date from the result then issue a query with q=timestamp[latestDate TO latestDate] But i dont want to execute two queries... ./zahoor On 11-Jan-2013, at 6:37 PM, jmozah wrote: > > > >> What do you want? >> 'the most recent ones' or '**only**

Re: retrieving latest document **only**

2013-01-11 Thread jmozah
> What do you want? > 'the most recent ones' or '**only** the latest' ? > > Perhaps a range query "q=timestamp:[refdate TO NOW]" will match your needs. > > Uwe > I need **only** the latest documents... in the above query , "refdate" can vary based on the query. ./zahoor

Re: retrieving latest document **only**

2013-01-11 Thread Uwe Reh
Am 10.01.2013 11:54, schrieb jmozah: I need a query that matches only the most recent ones... Because my stats depend on it.. But I have a requirement to show **only** the latest documents and the "stats" along with it.. What do you want? 'the most recent ones' or '**only** the latest' ? Perh

Re: retrieving latest document **only**

2013-01-10 Thread Otis Gospodnetic
Hi, Just add the required query clause with the appropriate range on that timestamp field you have to your existing query. Otis Solr & ElasticSearch Support http://sematext.com/ On Jan 10, 2013 5:55 AM, "jmozah" wrote: > > I need a query that matches only the most recent ones... > Because my st

Re: retrieving latest document **only**

2013-01-10 Thread jmozah
I need a query that matches only the most recent ones... Because my stats depend on it.. ./Zahoor HBase Musings On 10-Jan-2013, at 3:37 PM, Naresh wrote: > Hi, > Can you sort on the timestamp field (descending) and take only the top most > row (rows=1)? > > Or are you saying that you want

Re: retrieving latest document **only**

2013-01-10 Thread Naresh
Hi, Can you sort on the timestamp field (descending) and take only the top most row (rows=1)? Or are you saying that you want a query such that it matches only the most recent one? On Thu, Jan 10, 2013 at 5:27 PM, jmozah wrote: > > HI > > I use solr 4.0 and have documents which have a timestamp

retrieving latest document **only**

2013-01-10 Thread jmozah
HI I use solr 4.0 and have documents which have a timestamp field. For a given query i know how to boost the latest documents and show them up first. But I have a requirement to show **only** the latest documents and the "stats" along with it.. If i use boosting..the older documents still ma