-
Hi all;
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi, Using store(A) would work too if using an Eager-Storer but this will store everything reachable by references from “A” and therefore cause a lot of unnecessary overhead. In your case that would write out the whole graph again starting at “A” |
Beta Was this translation helpful? Give feedback.
Hi,
The storeAll(E,H,Q) is the recommended solution to update several objects at once. It will apply a Lazy-Storer to all three objects. The storeAll method will either persist all supplied instance or non and throw an exception in case of error.
Using store(A) would work too if using an Eager-Storer but this will store everything reachable by references from “A” and therefore cause a lot of unnecessary overhead. In your case that would write out the whole graph again starting at “A”