Difference between evictAll and refresh

1.7k Views Asked by At

What is the difference between evictAll and refresh :

em.getEntityManagerFactory().getCache().evict(AdminUtilisateur.class, user);

and

em.refresh(em.getReference(AdminUtilisateur.class, user.getId()));

And when should i use each one?

Thank you.

1

There are 1 best solutions below

1
On BEST ANSWER

evict : Mark an instance as no longer needed in the cache.

refresh : Refresh the state of the instance from the database, overwriting changes made to the entity