I am currently using the Django shell in debugging mode in order to benchmark my queries.
This is an example of what I get:
>>> Item.objects.filter(param1=63)
(0.001) SELECT `items`.`id`, `items`.`param1`, `items`.`param2`, FROM `items` WHERE `items`.`param1` = 63; args=(63,)
Most of the results I am getting lay in the order of a millisecond, so I was wondering: is it possible to increase the query precision say, one or two orders of magnitude in order to tell them apart?
I am using MariaDB as a database.
mariadb --version
mariadb Ver 15.1 Distrib 10.4.11-MariaDB, for Linux (x86_64) using readline 5.1
Thank you in advance.
Regards.