#1427 - QueryCache should be cleared, if one of a dependent bean is updated

Refactor on PostCommitProcessing with fixes for dependent table invalidation
This commit is contained in:
rob bygrave
2018-06-26 00:25:33 +12:00
parent 9159cec36c
commit ed566ca153
19 changed files with 262 additions and 127 deletions
@@ -29,7 +29,7 @@ public final class DeleteByIdMap {
BeanDescriptor<?> d = deleteIds.getBeanDescriptor();
List<Object> idValues = deleteIds.getIds();
if (idValues != null) {
d.cacheHandleDeleteByIds(idValues, changeSet);
d.cachePersistDeleteByIds(idValues, changeSet);
}
}
}