Switch to using DateRangeField for storing date ranges#330
Switch to using DateRangeField for storing date ranges#330
Conversation
This can be more efficient than a long list of integers.
e429be6 to
a21f41d
Compare
|
Would the UI look any different, or the same? Would this PR make it possible to use dates more specific than years, or not yet? Would it still possible to use this plugin with integers that are not dates, if desired? I know the bulk of the use of this is with integers representing years, but I'm not sure if some may be using it for other integer content, which was always meant to be supported. |
|
I tested this with some very mixed success unfortunately. I have a branch here that seems to be successfully indexing However, searching For the plugin, I put This was using our customized ArcLight so I'm not 100% that there's not some other issue with that, but it seems to work when I switch The Solr 9 docs for DateRangeField says "It has the potential to allow efficient faceting, similar to facet.enum." but I don't know what that means? |
This can be more efficient than a long list of integers.