diff --git a/docs/content/docs/guides/optimizing-for-performance.mdx b/docs/content/docs/guides/optimizing-for-performance.mdx index 94be7448..e81857a6 100644 --- a/docs/content/docs/guides/optimizing-for-performance.mdx +++ b/docs/content/docs/guides/optimizing-for-performance.mdx @@ -11,7 +11,7 @@ Caching is a powerful technique that can significantly improve the performance o ### Cookie Cache -Calling your database every time `useSession` or `getSession` invoked isn’t ideal, especially if sessions don’t change frequently. Cookie caching handles this by storing session data in a short-lived, signed cookie similar to how JWT access tokens are used with refresh tokens. +Calling your database every time `useSession` or `getSession` is invoked isn’t ideal, especially if sessions don’t change frequently. Cookie caching handles this by storing session data in a short-lived, signed cookie similar to how JWT access tokens are used with refresh tokens. To turn on cookie caching, just set `session.cookieCache` in your auth config: