Question

anyone have any experience with lift and how it compares to more widely used frameworks like rails and django?

Was it helpful?

Solution

There are really a myriad of differences between Rails and Lift. Lift was constructed by DPP as a reaction against Rails, so do not be surprised if you find a lot of differences:

  • Security: This is the biggest difference. Lift is probably the framework that focus the most on security. Lift is very secure out of the box. It can't handle every threat, but more than any other framework I know of.

  • Performance: Since Scala is statically typed (just as @Vadim said) and runs on the JVM, Lift runs faster (taken that everything else is equal). The JVM gives you extreme performance nowadays..

  • Not MVC: Lift is not an MVC framework.

Lastly I want to redirect you to this thread about comparing Lift: For my next project, a web-app, should use scala+wicket or scala+lift?

OTHER TIPS

Django has a greater community and more third-party extensions (so-called apps). Lift application will be faster (because of static nature of Scala and JVM) other things being equal.

Well designed Lift will be faster than poorly designed Django. The converse is also true.

Lift is supposed to scale more easily because it's built upon the JVM, was designed with scalability in mind and you have access to tested libraries that were developed for scalability. But that's about it. Really. Both Rails and Django will get you up to speed fast.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top