Outsystems has some Front-end servers that store the most frequently used values (cache) in it for regular use of the application. It makes data fetching a bit fast.
When a particular value in the Front-End server (cache server) becomes old, i.e. the back-end server has the updated value and the Front-end server doesn't have the same value as back-end, then the value in the Front-end server cannot be used and it is marked as "dirty".
I need to figure out such dirty values and delete them using code.
Regards