StatelessSession.insertAll(), updateAll(), deleteAll(), refreshAll() #5148
gavinking
started this conversation in
Design Proposals
Replies: 1 comment
-
Agreed, those would be useful. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Currently Hibernate classic has no way to batch operations in a
StatelessSession
. This problem was already solved in Hibernate Reactive by addinginsertAll()
,updateAll()
,deleteAll()
,refreshAll()
.Those operations are harder to implement in Hibernate classic because of how the whole batching infrastructure is done, but I still think it's well-worth the effort.
Beta Was this translation helpful? Give feedback.
All reactions