mirror of
https://github.com/withastro/astro.git
synced 2025-03-31 23:31:30 -05:00
fix: reuse storage objects in sessions (#13415)
This commit is contained in:
parent
fd65296626
commit
be866a1d1d
2 changed files with 17 additions and 0 deletions
6
.changeset/dull-papers-fry.md
Normal file
6
.changeset/dull-papers-fry.md
Normal file
|
@ -0,0 +1,6 @@
|
|||
---
|
||||
'astro': patch
|
||||
---
|
||||
|
||||
Reuses experimental session storage object between requests. This prevents memory leaks and improves performance for drivers that open persistent connections to a database.
|
||||
|
|
@ -76,6 +76,8 @@ export class AstroSession<TDriver extends SessionDriverName = any> {
|
|||
// preserving in-memory changes and deletions.
|
||||
#partial = true;
|
||||
|
||||
static #sharedStorage = new Map<string, Storage>();
|
||||
|
||||
constructor(
|
||||
cookies: AstroCookies,
|
||||
{
|
||||
|
@ -402,6 +404,14 @@ export class AstroSession<TDriver extends SessionDriverName = any> {
|
|||
return this.#storage;
|
||||
}
|
||||
|
||||
// We reuse the storage object if it has already been created.
|
||||
// We don't need to worry about the config changing because editing it
|
||||
// will always restart the process.
|
||||
if (AstroSession.#sharedStorage.has(this.#config.driver)) {
|
||||
this.#storage = AstroSession.#sharedStorage.get(this.#config.driver);
|
||||
return this.#storage!;
|
||||
}
|
||||
|
||||
if (this.#config.driver === 'test') {
|
||||
this.#storage = (this.#config as SessionConfig<'test'>).options.mockStorage;
|
||||
return this.#storage!;
|
||||
|
@ -468,6 +478,7 @@ export class AstroSession<TDriver extends SessionDriverName = any> {
|
|||
this.#storage = createStorage({
|
||||
driver: driver(this.#config.options),
|
||||
});
|
||||
AstroSession.#sharedStorage.set(this.#config.driver, this.#storage);
|
||||
return this.#storage;
|
||||
} catch (err) {
|
||||
throw new AstroError(
|
||||
|
|
Loading…
Add table
Reference in a new issue