I\'m struggling to get my head round how the HiLo generator works in NHibernate. I\'ve read the explanation here which made things a little clearer.
My understanding
For those wondering how to choose a good max_lo value, the trade-off is essentially between:
hi value from the db.A lower max_lo will make sure there is no "waste" of id's, which in turn governs the moment at which you will hit the implicit limit of your datatype (which will likely be int). The price you pay is that each client needs to query and increase the hi value more frequently.
A higher max_lo is useful to reduce the frequency of queries that get and increment hi, but result in more waste.
The metrics you need to take into account to determine the optimal value are:
Let's consider a web application that is hosted in IIS and is recycled every 24 hours. The entities are Customer and Order.
Now lets assume:
Then the perfect max_lo is 10000 for Orders and 10 for Customers. Of course, in the real world you can never determine it so precicely and clearly, but you should get the idea here!
Now let's consider different scenario where we pick totally wrong (ridiculous) max_lo's:
max_lo of only 10 on orders, every second there is a superfluous database call to increment hi.max_lo default of 32767. Hi is incremented 100 times a day (50 clients * 2), which means you will hit the maximum value of int in less than 2 years, should you have forgotten the important fact that hi gets incremented so frequently. A good max_lo here would be (100 tickets / 50 clients) = only 2.Hopes this helps with conceptualizing the HiLo algorithm and its implications in general, while also giving you the maths to actually stick a number on max_lo.