Performance of `auth.api.hasPermission` seem to be very slow
Do I need to create indexes in my sqlite database to improve it? [solved]
4 Replies
Optimizing for Performance | Better Auth
A guide to optimizing your Better Auth application for performance.
thanks for above. I did applied index, but still the issue (absence of indexes should not be the problem since I don't have much data anyway).
When I query the db myself, instead of using
Now I am only using
auth.api.hasPermission
call, it does reduce the time by 1/4 so there is some perf improvement which we can do.Now I am only using
auth.api.getSession
which is slowest, My call look like
const session = await auth.api.getSession({ headers: c.req.raw.headers });
I have configured cookie cache, but that is used on subseuqnt calls I guess.
My setup is - Cloudflare worker + D1 Sqlite + Drizzle ORM.out of curiosity, how are you measuring the time it takes to query?
But my problem is solved now. My D1 DB was hosted in far location. which I had to fix. Thanks for all the help.