Space.loadSpace is blocking, and must not be

(Bug, Closed -> Fixed, Priority: High, Test Status: No automated tests yet , Reported By Justin du Coeur, )
Summary: Not technically blocking clustering, but this is a pretty evil bug -- it borders on Critical simply because it's a ticking time bomb of bad. Space.loadSpace currently blocks on Load, and Load can take quite a while, especially if we need to evolve the space. That's an absolute no-no.
This code apparently dates back to the earliest days, before I 100% grokked Akka. The comment in the code is close but not quite right -- we don't need FSM, but we should be doing the usual become() game, stashing messages until we're loaded.
Note that this is non-trivial -- we have to use stash(), which means we need to change the mailbox for Space, the same way we do for Session.
Increase the Load timeout (5 seconds isn't much), and make sure that we do something rational if we do time out.