I want to get documents from Solr by querying the same keywords everyday in time interval, with rows limit applied on each day.
For example, if the keywords is "Machine Learning", the time interval is in between 21-11-2018 to 23-11-2018, each day is limited by 100 rows at most. Currently I naively query on each day:
q="Machine Learning", fl=date:21-11-2018, rows=100
q="Machine Learning", fl=date:22-11-2018, rows=100
q="Machine Learning", fl=date:23-11-2018, rows=100
Is there an equivalent way by just a single query to Solr?