ibrahimyaacob
ibrahimyaacob4w ago

middleware is slowing down NextJS page render

after few hours of debugging, i finally figured out why my Next app page navigation is slow (doesnt instantly navigate when clicking <Link/>). It was the convexAuth.isAuthneticated() function is triggered on every page navigation. I know it was the function because when i remove the line, my page navigates to the new path instantly and i dont have that auth:isAuthenticated log in convex. so the question is how do i optimize it ?? our user complains a lot on this, saying our app is super sluggish.
No description
No description
12 Replies
erquhart
erquhart4w ago
Hmm any chance just calling it once at the beginning of the middleware function and reusing the result helps? ah nevermind it wouldn't get called more than once anyway That cached call should be extremely quick, though. Strange that it's noticeable. Especially if the response was cached. Ah just checked a live project with this setup and the well known endpoints take ~300ms. It isn't every navigation, I'm seeing like a 30 second window. cc/ @sshader do you know if this is intentional or maybe a config issue?
ibrahimyaacob
ibrahimyaacobOP3w ago
@erquhart is there something i can do to fix this ? here's what i got when setting verbose to true
ibrahimyaacob
ibrahimyaacobOP3w ago
No description
ibrahimyaacob
ibrahimyaacobOP3w ago
No description
erquhart
erquhart3w ago
I can say that it's currently working as designed, but an improvement is definitely needed for the lag It's sort of understood that nextjs server auth is still a work in progress, hence the "experimental" label in the docs. If you want next server auth that's fully stable today, I'd have to recommend Clerk. But I do expect Convex Auth will improve here.
ibrahimyaacob
ibrahimyaacobOP3w ago
@erquhart before i changed anything, does moving the authentication check logic from middleware to server component layout going to help
erquhart
erquhart3w ago
The call is still going to be made from the nextjs server to the convex instance either way, so probably not
ibrahimyaacob
ibrahimyaacobOP3w ago
@erquhart i just tried implement the change turns out there's a noticable difference! still a bit slow but the speed is noticable
erquhart
erquhart3w ago
Glad it improved things, good to know!
erquhart
erquhart3w ago
@jacobparis.com ❖ (@jacobmparis) on X
if the docs tell you to use middleware to add a 400ms auth check into the hot path of every request then the docs are wrong
X
ibrahimyaacob
ibrahimyaacobOP3w ago
@erquhart should i make a github issue for this? i really want to help making convex auth better
erquhart
erquhart3w ago
Yeah I would. It's a known issue but that's the proper way to report/track for this.

Did you find this page helpful?