We are trying to overhaul a scheduling application at the moment. It is written in Python/Django and using DRF to power a React frontend.
I just have a quick question- apologies if this has been answered already.
I have seen Dietrich Epp's answer to this problem on this thread.
I am just wondering if I have to check if a time is between two datetime objects over 100k records, what the fastest way to achieve this is?
I have considered indexing all of the datetimes in Haystack so that Elasticsearch can deal with the searching but do not want to overcomplicate if it can be solved simply.
Thanks all!