Hi team,
I am about to run a migration to update case description for around 200-300k cases.
If I do setDesciption for each case, then the performance is not good
ICase icase = CaseUtils.findCase(order.getCaseId());
if (icase != null) {
icase.setDescription(description);
}
Instead, I run bulk update sql query to update 'description' column in iwa_caselocalized table, but after finishing updating the table, the data is not reflected on the UI, it is still showing the old value.
I have done some research and found out that Ivy Case being cached, then if I update manually by running SQL, it will not know to refresh.
So, is there any way to evict Ivy Cache so that new description value can be shown on the UI?
Thank you