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

[WIP] Convert ky to fetch #72

Draft
wants to merge 2 commits into
base: master
Choose a base branch
from
Draft

[WIP] Convert ky to fetch #72

wants to merge 2 commits into from

Conversation

Thenlie
Copy link
Collaborator

@Thenlie Thenlie commented Sep 26, 2023

This will use the default caching strategy for fetch.

default The browser looks for a matching request in its HTTP cache.

  • If there is a match and it is fresh, it will be returned from the cache.
  • If there is a match but it is stale, the browser will make a conditional request to the remote server. If the server indicates that the resource has not changed, it will be returned from the cache. Otherwise the resource will be downloaded from the server and the cache will be updated.
  • If there is no match, the browser will make a normal request, and will update the cache with the downloaded resource.

Docs

https://developer.mozilla.org/en-US/docs/Web/API/Request/cache#value

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

Successfully merging this pull request may close these issues.

None yet

1 participant