Hello,
I am learning ObjectDB and i noticed that the queries that are executed in ObjectDB Explorer are faster (about 5 ms) than queries in my project (~400 ms).
Here is my JPQL query :
SELECT p FROM Point p WHERE p.x=0
I am using Point entity class from tutorial, but with Indexed "x" field and database contains 999,999 points with random coordinates.
Am i missing something or it is a feature of explorer?
P.S. Two source files are attached.