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
urlCache was added to solve some use cases that curl.js didn't handle. Unfortunately, it has caused other issues. I'm thinking it's really not the right solution. I'll collect the use cases for urlCache here, so we can figure out the best way to remove it.
What is urlCache? As of a few versions back, curl.js has two internal caches: one for modules keyed by module id (cache) and one for modules keyed by url (urlCache). If curl can't find a module in cache, it looks in urlCache.
urlCache was added to solve some use cases that curl.js didn't handle. Unfortunately, it has caused other issues. I'm thinking it's really not the right solution. I'll collect the use cases for urlCache here, so we can figure out the best way to remove it.
What is urlCache? As of a few versions back, curl.js has two internal caches: one for modules keyed by module id (
cache
) and one for modules keyed by url (urlCache
). If curl can't find a module incache
, it looks inurlCache
.If we remove urlCache, issue #260 will be fixed.
The text was updated successfully, but these errors were encountered: