On Mar 12, 6:10 pm, Les Mikesell <[email protected]> wrote: > So what happens when a key is repeatedly written and it grows a bit each time? > I had trouble with that long ago with a berkeleydb version that I think was > eventually fixed. As things work now, if the new storage has to move to a > larger block, is the old space immediately freed?
Every write is to a new block, then the previous is made available for the next write. Size isn't relevant for this case.
