0

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 .

Yurii Buhryn
  • 803
  • 3
  • 9
  • 27

1 Answers1

1

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

Community
  • 1
  • 1
appbootup
  • 9,537
  • 3
  • 33
  • 65