Replies: 1 comment 1 reply
-
Hi, You also may check if your code ensures that there are no modifications done to object graph when a store operation is in progress. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
We are building an application where the Idea is that it is extensible by allowing to create new DataItems.
A new module could for example create "Person.java" class that extends the abstract class "DataItem.java".
We are using EclipseStore for persistence and have root object:
The idea is that you can create a generic DataItemRepository and pass in the class of DataItem you want to work with.
This way we can create a basic CrudRepository really fast:
Is this a valid way of working with EclipseStore?
I sometimes run into Exceptions that the ooid does not match with the loaded from the storage.
Beta Was this translation helpful? Give feedback.
All reactions