I want to know some information about this particular query:
case_insensitive_username = User.objects.filter(email__iexact=username).first()
- is there a way to know how many queries it executes on the background?
- How can I test the performance of this query? I mean, execution time, memory.
Thanks in advance.