Hello! *Does Solr support any sort of chronological ordering of data?* I would like to divide my data to: Daily, weekly, monthly, yearly parts. For performance sake. Has anyone done something like this over SolrCloud?
More thoughts: While Indexing: I'm soft committing every 2 seconds so I would rather do that on the daily index only (open reader and cache invalidation effort) as the total index shard size is >200GB While Searching: I would rather search first the daily and weekly parts, moving to older data only if results are not satisfying. I guess there's a challenge to move the daily data to the weekly data at the end of a day, and so on.... Anything build-in that goes in this direction? If not, any example of some custom collection/sharding configuration? Thanks. Gili.