diepcustom
diepcustom copied to clipboard
Cache API Responses on the Client
Cache them on the client, store a hash, send hash to server, compare with server hash, send back new data if necessary. Speeds up client loading times significantly.
this is what the http protocol is already perfectly suited to do. no need to reinvent the wheel. see ETAG.
this is what the http protocol is already perfectly suited to do. no need to reinvent the wheel. see ETAG.
interesting, thanks for the hint