I have a domain object that has a particular state that upon a certain event handled by a service object, I need to examine all instances that match that state. This event can occur fairly frequently so doing a hibernate query every time would be inefficient. So I have a collection of these that I store at startup and maintain whenever needed.
My question is, if I configured hibernates second level cache, would I be able to make the following change to my code without being concerned about performance?
from:
public void handleEvent(SomeEvent someEvent) {
for (Entity entity : matchedEntitiesSet) {
// evaluate each entity for required changes. update state as needed
// persist any changes
}
// update my collection with the current repository result.
}
to:
public void handleEvent(SomeEvent someEvent) {
for (Entity entity : dao.getSomeEventsByCriteria(criteria)) {
// evaluate each entity for required changes. update state as needed
// persist any changes
}
}
Effectively I would change to use the DAO exclusively as opposed to maintaining a set of said matched entities within my service.