You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hey there,
methods like batchCheck and listRelations can potentially issue a lot of individual requests. We noticed some rather severe performance issues which we narrowed down to each of those requests doing a new DNS lookup and TCP connection setup.
Once we enabled connection re-use/pooling/keep alive (whatever you want to call it) we saw big improvements.
Hey there,
methods like
batchCheck
andlistRelations
can potentially issue a lot of individual requests. We noticed some rather severe performance issues which we narrowed down to each of those requests doing a new DNS lookup and TCP connection setup.Once we enabled connection re-use/pooling/keep alive (whatever you want to call it) we saw big improvements.
I think this should either be the default for the SDK's axios instance, a parameter for the
OpenFgaClient
or the very least mentioned in the docs.What do you think?
The text was updated successfully, but these errors were encountered: