In my application they may receive big lists of records (>1000), and I fear, that ListGrid may slow down because of caching all those records (if the user passes all of them). So, I tried to use setInvalidateCache(true) in transformResponse; but my experiments showed, that it works only on ADD/DELETE/UPDATE, but is ignored on FETCH operations.
How can I avoid inflating of the cache? I don't wish create special button for explicit invalidating of the cache - it is uncomfortable for users.
How can I avoid inflating of the cache? I don't wish create special button for explicit invalidating of the cache - it is uncomfortable for users.
Comment