Hi,
I didn't follow the thread, but maybe you are looking for &fq=(name1
OR name2 OR ) for those 100 names you mentioned, so that 1 doesn't
filter out the other 99.
Otis
--
Search Analytics - http://sematext.com/search-analytics/index.html
Performance Monitoring - http://sematext.com/spm/inde
Thanks Chris,
seems it is working fine, below is the query
http://localhost:8993/solr/select?q=*:*&fq=(!tag=test)name:test*&fq=(!tag=test1)name:test1&fq=(!tag=test3)name:test3&&facet=true&facet.range={!key=test
ex=test1,test3}Admission_Date&facet.range={!key=test1
ex=test,test3}Admission_Date&fac
: currently i have to do 3 request for all three values of name, with passing
: "name" as fq parameter and given facet date range.
Got it, the example of what you are looking for makes perfect sense.
In general, faceting on the same field in different ways isn't supported
(SOLR-1351 is an open
Thanks Chris,
but i want something like below,
docid:1 name=test date=oct12 docid:7 name=test1 date=oct13
docid:13 name=test3 date=oct12
docid:2 name=test date=oct12 docid:8 name=test1 date=oct13
docid:14 name=test3 date=oct13
docid:3 name=test date=oct13 docid:9 nam
: In solr, I have two fields one is datetime [Admission_Date] and other
: string[Name]. I want to do datefaceting on multiple values in one solr
: query.
:
: Suppose I have 3 records. name="test" ,"test1", "test3".
:
: I want to do data-faceting on all three values in one solr query.
I'm sorry,