question1:
I guess there is a limit on the number of cached values, otherwise you
can run into Out Of Memory Exceptions.
What is the limit, and how can it be configured?
question 2:
By default this value is set to true; which surprises me because it
has a lot of implications. E.g. the following code is completely
broken:
class Employee implements Serializable{
boolean fired = false
}
Employee e = employeeMap.get("123");
e.fired=true;
employeeMap.put("123",e);
Wouldn't it make more sense to make 'cache-value' by default false to
prevent 99% of the users to run into this issue?
--
You received this message because you are subscribed to the Google Groups "Hazelcast" group.
To post to this group, send email to haze...@googlegroups.com.
To unsubscribe from this group, send email to hazelcast+...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/hazelcast?hl=en.