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 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 can do that? I am allowed to use igniteCache.get, put, delete ??
--
Sent from: http://apache-ignite-users.70518.x6.nabble.com/