Re: CRUD operation on Hibernate L2 Cache ?

2018-07-18 Thread Mikhail
Hi Monstereo, monstereo wrote > When I want to add new element to cache, it will also update the database. > When I want to update any element in cache, it will also update the > database. > When I want to delete any element in cache, it will also delete the > element > from database. > > How I

CRUD operation on Hibernate L2 Cache ?

2018-07-18 Thread monstereo
I can run the example on github for hibernate l2 cache with ignite. And also I am adding the new data to mydatabase like this command:: User user = new User("jedi", "Luke", "Skywalker"); user.getPosts().add(new Post(user, "Let the Force be with you.")); ses.save(user); When I want to add