On Sun, Apr 19, 2009 at 23:42, Chris Miller <[email protected]> wrote: >> As soon as all possible fields are in the pool, we're essentially >> readonly. > The problem is, there's no guarantee we will ever reach this point. For > example suppose you have a server app that spawns a new thread per request. > Each new thread might have to make all the .intern() calls again because > they never see anything in the cache.
No sane server app is actually spawning a new thread per request, it takes one from pool. A spawned thread inherits visibility of its parent thread (at the moment of spawning). Even if a new thread still sees stale pool, it'll be updated on first cache miss. It won't even do a write. So, no "all the intern calls again", such scenario doesn't exist even in theory. -- Kirill Zakharenko/Кирилл Захаренко ([email protected]) Home / Mobile: +7 (495) 683-567-4 / +7 (903) 5-888-423 ICQ: 104465785 --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
