nikdo / wind-alert

Alerts wind freaks about big days.
0 stars 0 forks source link

Update dependencies #101

Closed nikdo closed 4 years ago

nikdo commented 4 years ago
nikdo commented 4 years ago

Caching takeaways

Express res.json sends a 304 status code if the response hasn't changed. So querying spot detail on our API returns 304 if DarkSky returns the same response. DarkSky returns the same response only if it is cached because otherwise, it returns new data with each request.

This means that if 304 is logged as status code by express, the forecast is cached.

nikdo commented 4 years ago

Time estimated: 3h Time spent: 11h

Why: