Reputation: 823
How to caching images in GWT with no-cache property in header ? I can't make changes in server and i need cache images in GWT side .
Upvotes: 0
Views: 516
Reputation: 9537
You usually need a mix and match of client and server side code. Some client side concepts are explained previously here - GWT Caching Concept
Image handling via ClienBundle helps in caching - https://developers.google.com/web-toolkit/doc/latest/DevGuideClientBundle
You can pick up some mode ideas from pagespeed to optimize image processing/bandwidth usage - https://developers.google.com/speed/docs/best-practices/payload
Upvotes: 1