Why did Hibernate changed the AUTO generation strategy for IDs in MySql to TABLE? Is there any clear advantage using this strategy in MySQL? It is for portability of code across different databases?
In Hibernate's Git repo here and here you can find some maybe correlated explanations.
On top of that I stumbled upon this Hibernate forum question that says:
Generally, a table based sequence strategy is the most efficient strategy you can use on MySQL which lacks support for native sequences. The performance advantage of this approach is visible when you use a proper allocation size for the sequence i.e. 50+
Have you experienced such improved efficinecy ?