--
Lift, the simply functional web framework: http://liftweb.net
Code: http://github.com/lift
Discussion: http://groups.google.com/group/liftweb
Stuck? Help us help you: https://www.assembla.com/wiki/show/liftweb/Posting_example_code
--
Hi !,We have just moved a website to Lift / MongoDB :It was previously hosted on Google App Engine using the Play! Framework.
Just to compare : for the exact same website, Lift does it with 6K lines of code and Play! does it with 24K.
Best,Roch
Where is it hosted now? There are free PaaS's that give you a full environment (threading, etc.), like CloudBees. (To some extent it may be thanks to AppEngine that there are so many --- it seems to have sparked some healthy competition.)
Curious, what are the main "line savers" in Lift as opposed to Play?
Cloudbees is great however the pricing isn't very progressive for Lift users, If I understood well as soon as we want to scale to more than one instance we need to pay for the 100$ monthly plan.
Hi !Where is it hosted now? There are free PaaS's that give you a full environment (threading, etc.), like CloudBees. (To some extent it may be thanks to AppEngine that there are so many --- it seems to have sparked some healthy competition.)It's hosted on cloudbees with a MongoHQ Addon (the pictures are hosted on GridFS : more than a gigabyte of data for now).Cloudbees is great however the pricing isn't very progressive for Lift users, If I understood well as soon as we want to scale to more than one instance we need to pay for the 100$ monthly plan.Curious, what are the main "line savers" in Lift as opposed to Play?- Scala it's a lot better than Java for complex thingsfor instance this is a lot quicker than what I could do in Java : items(_.itemb.value).mapValues(_.size).toList sortWith {_._2 > _._2}