We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
현재 client와 next간의 통신에는 비효율적인 부분이 있습니다.
sessionProvider
getSession()
getMyInfo
기존 api함수의 변경 없이 sessionProvider의 데이터를 ky 인스턴스에서 사용할 수 있게 수정하고, getMyInfo를 호출하여 업데이트하는 때를 적절한 곳에서 진행하여 의미없는 호출을 없애려고 합니다.
kyInstance
getSession
No response
The text was updated successfully, but these errors were encountered:
ptyoiy
No branches or pull requests
🔨 Issue
현재 client와 next간의 통신에는 비효율적인 부분이 있습니다.
sessionProvider
)가 있음에도 매 요청마다getSession()
으로 next 서버에 세션을 요청해서 토큰을 받고 있습니다. (ky before hook)서버 액션에서 사용할때는 문제 없습니다.
getMyInfo
호출합니다. 1번에 의해 매우 많이getMyInfo
를 호출하게 됩니다. (auth.ts)기존 api함수의 변경 없이
sessionProvider
의 데이터를 ky 인스턴스에서 사용할 수 있게 수정하고,getMyInfo
를 호출하여 업데이트하는 때를 적절한 곳에서 진행하여 의미없는 호출을 없애려고 합니다.✅ To-do
kyInstance
를 사용할 때,getSession
대신sessionProvider
의 캐싱데이터를 사용하도록 수정📄 Reference
No response
The text was updated successfully, but these errors were encountered: