[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: [5.4] Shrinking of tables
- From: Roberto Ierusalimschy <roberto@...>
- Date: Fri, 6 Jul 2018 12:50:04 -0300
> OK, is a rehash still only triggered by an assignment to a new key or
> will collectgarbage()
> or even something else also do it now?
Nothing changed here. A rehash is only triggered by an assignment to a
new key, when there is no recognizable free space left in the hash part
to put this new key.
-- Roberto