I'm fairly sure most around here are familiar with component based/continuation passing style stateful web programming. If not, there's a reasonably decent overview of one specific framework http://www.defmacro.org/ramblings/continuations-web.html.
I've had some basic theoretical exposure to this style of programming, but how scalable is it? If memory serves, it is *very* possible for one user to use many objects, most of which would end up floating around for a while with no hope of ever being accessed (garbage collection is pretty tricky when we can't tell what the user has linked to). Of course, computer's capabilities are constantly expanding, something like AllegroCache could help handle more objects, and perhaps some sort of optional browser extension could help the site know what links may have been stored (for garbage collection).
Are there any (largish) sites that use this sort of stateful web programming?
