Can you give an example of the data you like to clear?
If it is possible with JavaScript then you can use ws.Eval to run it.
Actually what I want to do is optionally clear the cache of my abmaterial webapp. Why?
I had replaced some images in my app for use however each time I was testing my app, the old images kept on showing even though in the folder the new pngs were replaced. These images are used during run time for some displays using ABMImage components. So after I cleared the cache, the new images started working.
Looking deeper into the scavenge module, there is a call
ABM.ScavengeCache(ABMShared.CachedPages), so I am assuming if I perhaps initialize the CachedPages map, clearing and rebuiling the cached pages could take place. Is that logic right? But then the timer, do I have to start that also, I presume so.