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
Is there an existing issue that is already proposing this?
I have searched the existing issues
Potential Commit/PR that introduced the regression
No response
NestJS version
10.2.10 --> 10.3.0
Describe the regression
The cache manager is shared between multiple cache modules since the upgrade on @nestjs/[email protected] and @nestjs/[email protected].
I have singled out these 2 dependencies, as latest @nestjs/cache-manager changes seem to be not causing this.
To verify caching aint working as expected run npx nx test
The cache modules can be found at src/app/caches. I created a cat-cache and a user-cache. They should be configured differently (ttl, max,..) and not share the same manager since cat and user IDs can overlap.
Different cache modules can be configured differently. I would expect that the cache manager is not shared between the two modules and one cache does not include keys and values from others.
Other
No response
The text was updated successfully, but these errors were encountered:
drdreo
changed the title
Using multiple CacheModules resolve to same cache manager
Using multiple CacheModules resolve to same cache manager in v10.3.0
Jan 16, 2024
Did you read the migration guide?
Is there an existing issue that is already proposing this?
Potential Commit/PR that introduced the regression
No response
NestJS version
10.2.10 --> 10.3.0
Describe the regression
The cache manager is shared between multiple cache modules since the upgrade on @nestjs/[email protected] and @nestjs/[email protected].
I have singled out these 2 dependencies, as latest @nestjs/cache-manager changes seem to be not causing this.
To verify caching aint working as expected run
npx nx test
The cache modules can be found at
src/app/caches
. I created a cat-cache and a user-cache. They should be configured differently (ttl, max,..) and not share the same manager since cat and user IDs can overlap.In the provided repo, there is also a working branch.
Minimum reproduction code
https://github.com/drdreo/nest-cache-bug
Input code
Registering a feature cache module will share same cache manager, like:
Expected behavior
Different cache modules can be configured differently. I would expect that the cache manager is not shared between the two modules and one cache does not include keys and values from others.
Other
No response
The text was updated successfully, but these errors were encountered: