Workaround:
Reset the collisionLimit of the collection to a much larger value
than the table size. The rebuildTable: optimizes performance by
reducing the number of collisions in table lookup, it is not
required for correct behavior.
rebuildTable: is called when at:put: is invoked and the collection
has too many collisions, so for large collections, you should
manually control collection size rather than allowing the automatic
growth. Set the collection size larger than you expect to ever need
it, and size the collisionLimit much larger than the collection size
to avoid rebuild.
If you need a larger table size when the collection is larger than
will fit into memory, you will need to create a new, properly sized
dictionary and add the elements to it, with interim commits.