I'm finding it hard to envision the kind of applications that are going to be created that will need to take advantage of multiple cores when there are "orders of magnitude more cores than applications". Do you believe that we're going to see a fundamental shift in the kinds of things people are going to want to do with computers, away from the typical communication, data manipulation applications into something else? I think the whole we-need-to-make-sure-we-can-handle-hundreds-of-cores argument is, frankly, ridiculous, no offense intended.<div>

<br></div><div>On balance, applications tend to be fundamentally simple things, with most of the complexity being in the creation of the UI, ensuring the user is guided through the application properly by updating various bits of the UI at appropriate times, and correcting bad user input. When you get into applications that do use multiple threads, they generally use multiple threads with shared memory, not message passing as is envisioned with shared workers. There are certainly classes of applications that are well suited to message-passing models, but for those that are user-facing non-server applications I'd be shocked if anyone could show me data that says more than 10% of the multi-threaded/multi-process applications use isolated tasks that pass messages to coordinate.</div>

<div><br></div><div>With regard to using the top window as a global context and copying the relevant bits into another window:</div><div><br></div><div>1. many browsers forcibly garbage collect the context when you close a window, so you can't leave <i>anything</i> behind</div>
<div>2. that's a whole lot of stuff you have to copy over, including rebinding any event handlers in the DOM that are bound to functions loaded in the closing window. It's impractical.</div><div><br></div><div>a<br>
<br><div class="gmail_quote">On Thu, Sep 3, 2009 at 4:30 AM, Ian Hickson <span dir="ltr"><<a href="mailto:ian@hixie.ch" target="_blank">ian@hixie.ch</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">On Sun, 30 Aug 2009, Michael Nordman wrote:<br>
><br>
> These arguments against the proposal are not persuasive. I remain of the<br>
<div>> opinion that the GlobalScript proposal has merit.<br>
<br>
</div>That's possible; I would recommend taking up a Global Script proposal in<br>
the public-webapps working group, though, as it is more of a Web App API<br>
type of thing than an HTML5 core feature.<br>
<div><br>
<br>
> On Sat, Aug 29, 2009 at 2:40 PM, Ian Hickson <<a href="mailto:ian@hixie.ch" target="_blank">ian@hixie.ch</a>> wrote:<br>
</div><div>> > On Mon, 17 Aug 2009, Dmitry Titov wrote:<br>
> > ><br>
> > > Currently there is no mechanism to directly share DOM, code and data<br>
> > > on the same ui thread across several pages of the web application.<br>
> > > Multi-page applications and the sites that navigate from page to<br>
> > > page would benefit from having access to a shared "global script<br>
> > > context" (naming?) with direct synchronous script access and ability<br>
> > > to manipulate DOM.<br>
> ><br>
> > This feature is of minimal use if there are multiple global objects<br>
> > per application. For instance, if each instance of GMail results in a<br>
> > separate global object, we really haven't solved the problem this is<br>
> > setting out to solve. We can already get a hold of the Window objects<br>
> > of subwindows (e.g. for popping out a chat window), which effectively<br>
> > provides a global object for those cases, so it's only an interesting<br>
> > proposal if we can guarantee global objects to more than just those.<br>
><br>
</div><div>> What problem do you think this is trying to solve? I think you're<br>
> misunderstanding the motivation. The motivation is frame/page navigation<br>
> performance once an app is up and running.<br>
><br>
</div><div>> > However, we can't. Given that all frames in a browsing context have to<br>
> > be on the same thread, regardless of domain, then unless we put all<br>
> > the browsing contexts on the same thread, we can't guarantee that all<br>
> > frames from the same domain across all browsing contexts will be on<br>
> > the same thread.<br>
><br>
</div><div>> As proposed, there is nothing that forces things into a single thread.<br>
> Those contexts that happen to be on the same thread can benefit from the<br>
> feature.<br>
<br>
</div>We already have a single global object today, in the world where<br>
independent windows end up with different "global script" objects. It's<br>
the Window object of the opener.<br>
<div><br>
<br>
> > I know that some consider the asynchronous interaction with workers to<br>
> > be a blocker problem, but I don't really understand why. We already<br>
> > have to have asynchronous communication with the server, which holds<br>
> > the roster data structure, and so on. What difference does it make if<br>
> > instead of talking to the server, you talk to a worker?<br>
><br>
</div><div>> Provided you can talk to the 'shared worker' in the same fashion you can<br>
> talk to the server (XHR)... you have a point here when it comes to<br>
> keeping application 'state' in memory and quickly retrieving it from any<br>
> page in the application. But, using a worker does nothing to keep<br>
> application 'code' required to run in pages 'hot'... code that does HTML<br>
> DOM manipulation for example can't run in the worker.<br>
><br>
</div><div>> You can't rely on opener since it can be closed at any time... including<br>
> prior to the openee being loaded.<br>
<br>
</div>It won't get garbage-collected though, so if it's closed, just grab the<br>
"hot" stuff you want over to a new "master" window.<br>
<div><br>
<br>
> Maybe a better approach would be to make frame navigations not so<br>
> costly.<br>
<br>
</div>That's up to browser vendors.<br>
<div><br>
<br>
> Does that mean you won't help produce a draft spec of this for us to<br>
> work with?<br>
<br>
</div>I think it's a bad idea, so no. :-)<br>
<div><br>
<br>
On Mon, 31 Aug 2009, Michael Davidson wrote:<br>
><br>
> In general, your arguments seem to fall into three categories.<br>
> (Apologies if I'm misrepresenting you by paraphrasing. My intent is<br>
> not to argue against a straw man, but to actually address your<br>
> concerns.)<br>
><br>
> - People should be writing multi-threaded web apps.<br>
> - UI code can be a small shim, so code sharing can be accomplished<br>
> through shared workers.<br>
> - The async model isn't really that tough.<br>
><br>
> For the first, I would argue that the web should progress much like<br>
> desktop apps. Computationally intensive algorithms will be done in a<br>
> background thread, but all UI interaction will continue to be done on<br>
> one thread. This is how desktop apps work. Scalability is accomplished<br>
> by putting different apps on different cores, not by requiring each<br>
> application view to run in its own thread.<br>
<br>
</div>That's fine today, but it won't do us much good when we have orders of<br>
magnitude more cores than running applications.<br>
<div><br>
<br>
> Finally, I don't think the UI can ever be a simple shim. There's a<br>
> long list of things that have to be in the UI: complex widget<br>
> rendering<br>
<br>
</div>...should be in the browser, not the Web app.<br>
<br>
<br>
> UI effects<br>
<br>
...should be in the CSS, not the script.<br>
<br>
<br>
> event handling<br>
<br>
That's pretty much all that should be in the UI-thread script, and it<br>
should just defer to the workers.<br>
<div><br>
<br>
On Mon, 31 Aug 2009, Mike Shaver wrote:<br>
><br>
> The multiple server-side processes that end up involved over the course<br>
> of the user's interaction do need to share state with each other, and<br>
> preserving blocking semantics for accessing such state makes the<br>
> programs much simpler to reason about given today's programming<br>
> languages.  Is that shared state not what the Global Script Object would<br>
> provide?<br>
<br>
</div>Aren't global script objects supposed to be client-side? I don't see how<br>
they would help with server-side state.<br>
<div><div></div><div><br>
--<br>
Ian Hickson               U+1047E                )\._.,--....,'``.    fL<br>
<a href="http://ln.hixie.ch/" target="_blank">http://ln.hixie.ch/</a>       U+263A                /,   _.. \   _\  ;`._ ,.<br>
Things that are impossible just take longer.   `._.-(,_..'--(,_..'`-.;.'<br>
</div></div></blockquote></div><br><br clear="all"><br>-- <br>Adam de Boor<br>Google<br>
</div>