To specifically address some of the questions about Lift:
1) Is it painful to get started with Lift doing normal web application development?
If by "Normal" you mean MVC and Hibernate over RDBMS, yes. It's more painful to do those in Lift than in Play. But that's more or less the last of the pain you'll experience, in my opinion. If you can manage to sketch your app in without needing to fall back on that plumbing, and leave those for later when you try to scale (both code and utility wise) up, you'll find Lift to be incredibly fast and versatile.
2) How does Lift's statefulness work out in practice? How do you cope with web servers going down in Lift? If I'm using Lift, and I push a new version of my code on a daily basis, does that mean I have to restart the application, and does that mean everyone's session gets wiped out?
Yes, you would need to restart the application. Yes, that means that everyone's session get wiped out. But that's not necessarily disastrous. The client side javascript will continue to try to reconnect for a few minutes, and I find that it will almost always catch the rebooted application, rehandshake, refresh and be back in a usable state. This relies on your application being careful about constantly persisting its state and being able to infer location from that, which in a stateless paradigm is ubiquitous, and in a stateful paradigm is only necessary to enable this sort of hot reloading behaviour.
I'm not trying to diminish this cost, it's a drawback. Stateful apps find it more difficult to cope with server reboot, when the session is sticky and tied to that server, than a stateless app which is storing state in an independent persistence store.
3) Does Lift's statefulness actually make it easier to code?
Yes. Yes, it absolutely does. I've been frank about the inconveniences posed by a stateful model, in the first 2 answers. But here's the payoff. Stateful behaviour is easy to code, and scales securely and simply to code complex interactions. Here's an example, which I hope doesn't get muddied by the inherent complexities of the Scala language (this is from a real world project):
private def inviteUser(group:Group) = {
a(() =>{
SpamServer ! Spam(
self=>
List(
Text("Who would you like to invite?"),
UserInformation.findAll.map(user=>
a(()=>{
self.done
GroupServer ! GroupInvite(currentUser.is,user.name.is,group.name)
Call("pendingInvitation",user.name.is)
}, <div>{user.name}</div>))),true)
Call("buildingUserlist")
}, Text("Invite"))
}
Explanation:
Emit a button labelled "Invite".
That button, when clicked, calls some javascript to tell me that we're calculating who we could invite.
When we've calculated it, we pop up a labelled, cancellable dialog, which lists all relevant users.
Each user name listed is a link, which when clicked will:
Close the dialog.
Call a javascript function, implementation unspecified (and decoupled), to tell me in a designer-friendly way that I have invited the user, and am waiting for them to accept.
Send an invitation to the selected user, specifying who I am and which group I want them to join.
That user receives the invitation without needing to poll or refresh, and will be presented with their response options using similar code to this.
The two pieces of javascript I pointed to but did not specify are both trivial, and completely view oriented (they do not participate in logic, they're just fades and animations and stuff, to keep it feeling snappy). This markup is spliced into a designer-friendly template via CSS selectors, providing a perfectly natural collaboration between designer and developer.
There is no logic in the view, and there is no view creeping into the logic.
It's not at all MVC, but it does provide me with a succinct, centralized way to express quite complicated and stateful logic.
4) What happens if someone messes around with the back button in Lift? What happens if a user is bouncing back and forth between several tabs?
If the application is presenting a Comet view (so, enabling real-time server push), that view takes responsibility for a piece of the screen's real estate. The component underlying it will ensure that the right data is always on the page, without the developer having to think too hard about update protocols etc. The developer can just call reRender and have it newly there, or can do a more specific approach by emitting update Javascript. The server will push those replacement and update snippets without the page needing to ask.
The component, which lives serverside, exists in the same state on all viewing pages. Thus, one user can modify it and it will automatically reflect those changes through to everyone. This is very powerful, and saves an awful lot of synchronization code. But it's also not the only way you can identify that component - if you choose to have it vary per user, you give it a more precise identity than its type (you give it a type and a name). If you choose to have it vary per tab, you have each page that pulls it up request it with a uniquely generated name. This ensures that the instances always different, and share no state.
Between those three possibilities, all the back/forth/new tab options are covered. Handling this case is completely under the developer's control. (I find that the most common state by far is that you want the component to look the same on every viewing screen, regardless of refresh or open tabs. For example, a stock ticker, a status update, a message of the day... This is what you will get by simply using the Class of the component as its identity).
I hope this gives some idea of Lift's capabilities and constraints.