Skip to content
New issue

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

feat: add objectFreeze option to prevent accidental mutations of cached objects #380

Open
nigrosimone opened this issue Jan 19, 2025 · 0 comments

Comments

@nigrosimone
Copy link

I would like to propose adding a new objectFreeze option to the LRUCache configuration, allowing cached objects to be frozen using Object.freeze. This would help prevent accidental mutations of cached data, increasing code safety, especially in scenarios where immutability is crucial.

import { LRUCache } from 'lru-cache'

const cache = new LRUCache({objectFreeze: process.env.NODE_ENV !== 'production'})

cache.set('key', { a: 1 })

const obj = cache.get('key');

obj.a = 2; // thrown error!!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant