Rest API - Caching Strategies
Given this server logic:
What will the server respond if the client sends
if request.headers.get('If-None-Match') == current_etag:
return 304
else:
return 200 with data and ETagWhat will the server respond if the client sends
If-None-Match: "xyz789" but current_etag is "abc123"?