diff --git a/wire/core/Session.php b/wire/core/Session.php index 8e9a9b8e..7301a22b 100644 --- a/wire/core/Session.php +++ b/wire/core/Session.php @@ -1428,7 +1428,11 @@ class Session extends Wire implements \IteratorAggregate { /** * Manually close the session, before program execution is done * - * #pw-internal + * A user session is limited to rendering one page at a time, unless the session is closed + * early. Use this when you have a request that may take awhile to render (like a request + * rendering a sitemap, etc.) and you don't need to get/save session data. By closing the session + * before starting a render, you can release the session to be available for the user to view + * other pages while the slower page render continues. * */ public function close() {