I am currently working on a project that uses queryDsl, jpa and hibernate with a mysql database. One of the generated queries took 625 seconds. Since I donโt have the ability to change indexes on the table itself, but I can use the force index for the actual query, which reduces the query time to 0.62 seconds during testing, how to do this in QueryDSL?
source
share