What kind of cache miss strategy should be used here.
"fulfill" [default]:
If the cache misses for any reason, wait until the new value is fetched and return it.
"stale-revalidate":
If the cache misses due to an expired value, return the expired (stale) value
and call the fetcher to update the value in the background.
What kind of cache miss strategy should be used here.