I realize this is more of a hibernate question than Grails. In a load balanced (2 nodes) environment I see that the ids of my objects are jumping around quite a bit. Even wi
I have since went to the database and modified the Sequence with the following DDL:
ALTER SEQUENCE MY_SEQ NOCACHE;
I think this is the best solution for this issue. Does anyone see potential problems with this approach?
Thanks all!