Hi,
I have a case which cache entry will be update frequently, and I only want
to persist it when the cache is manually remove(cache will not change
anymore) by me.
For this case, It is a good idea to implement persist logic in
delete/deleteAll method while write/writeAll do nothing?
@Override
public void delete(Object o)
{
//do nothing, we never have this operation.
}
Thanks
Shawn
