Hi, I have a filter query that gets documents based on date ranges from last n days to anytime in future.
The objective is to get documents between a date range, but the start date and end date values are stored in different fields and that is why I wrote the filter query as below fq=fromfield:[* TO NOW/DAY+1DAY]&& tofield:[NOW/DAY-7DAY TO *] && type:"abc" The way these queries are currently written I think wont leverage the filter cache because of "*". Is there a better way to write this query so that I can leverage the cache. -- Thanks Jay