Here's my situation; let's assume I have 2 tables; employee and responsibility where Responsibility.employee_id = employee.id
.
Sometimes we need to update Responsibility.employee_id
manually and there's no way to avoid this, it needs to be done manually sometimes. When we do, cayenne doesn't see the need to re-fetch the object since it's not aware that it was updated.
Question: I want to disable caching in cayenne completely. I want everything to be fetched from the database. Is this possible?