i Think this article says that range type is better way for range query.
example 1)
doc mapping : start_date(date) and end_date(date)
query description : start_date < criteria && criteria < end_date via range query
example 2_
doc mapping : date (date_range)
query description : start_date < criteria && criteria < end_date via term query
is there any difference of performance between example1 and example2?
thanks