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

Add CachedMap #51

Open
fregante opened this issue Nov 12, 2024 · 0 comments
Open

Add CachedMap #51

fregante opened this issue Nov 12, 2024 · 0 comments
Labels
enhancement New feature or request

Comments

@fregante
Copy link
Owner

I implemented and used this before, I don't remember where. I think it looks like:

const map = new CachedFunction('name', {updater: ()=>{throw 'bad usage'}});

map.set = map.applyOverride; // approximately
map.get = map.getCached;
delete map.getFresh

The use is for situations where you have several items to cache individually, but don't want to refactor your code to use CachedFunction instead. Example

This would let me drop the legacy API and release v7.

I think CachedFunction could extend CachedMap but the types might make this impossible.

@fregante fregante added the enhancement New feature or request label Nov 12, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant