I see that Ebean supports both ways but what are the real world differences between using @version or all approach? Any reason not to use @version everywhere with Ebean?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
I don't know of any reason to stay with the "all columns" version if you have control over the models yourself. The advantages of the "all" method as I see them are:
On the other hand, it's less efficient (checking all columns is more work than just checking a single column). I have also had problems with cascaded deletes in Play Framework, where ebean thought that the data in the database had changed. The drawbacks of the version scheme that I can come up with are
I don't think either of these drawbacks are serious. If you know what you are doing (and you've proved that already by asking the question ;) ) and you feel confident that you won't forget to update your version field, then go ahead! |
|||
|
|
