- Basics
- Extended GUI
- Available features
- More
- Reference
- Examples
- Finishing
Caching handling
By default, lists and all standard xhtml screens are cached in client.
After saving to cache, next time user tries to load the same page, it is loaded for cache so no HTTP request is made. Caching
is URL based including GET parameters: If http://www.example.com/foo is in cache and client requests
http://www.example.com/foo?bar=1, it is still downloaded.
If you want to disable caching of your page, just set this HTTP Header:
Pragma: no-cache
For testing your service is best to disable caching via header for all pages. When service is deployed, allow caching for some pages that are not dynamic. It speeds using of your service. In client you can remove cache by deleting "Locify/settings/cache" folder or by updating service (Options -> Service -> Update Service).
