Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Grails vs Gaelyk for new Groovy AppEngine application [closed]

I am beginning development on a new AppEngine application using Groovy. It will be medium-sized and use a number of AppEngine services. It will have both a regular and a mobile website, using HTML 5 and JQuery.

Which of the two frameworks suits my case best? And why?

like image 768
Axel Fontaine Avatar asked Feb 12 '11 15:02

Axel Fontaine


2 Answers

With Graeme (Grails project lead), we looked recently into making the latest Grails run again in App Engine, and we stumbled across some OpenJDK bugs that prevent the latest Grails from even starting on App Engine. So till those issues are resolved, and we are able to resolve other potential issues that may arise, recent Grails versions won't run properly, if at all, on App Engine. So Gaelyk seems to be the sole "Groovy" option on App Engine for now.

like image 89
glaforge Avatar answered Nov 03 '22 10:11

glaforge


I am not directly comparing Grails vs. Gaelyk on App Engine but maybe my blog posts will help you in making a decision: http://bit.ly/9BRQRP. In general you are better off with Gaelyk because the cold startup times are lower (assuming you don't want to pay for a reserved instance). Gaelyk provides a nice abstraction layer on top of all the App Engine services which makes using them easier. The Grails App Engine plugin only helps you with enabling your Grails app for deployment on Google's platform.

like image 2
Benjamin Muschko Avatar answered Nov 03 '22 10:11

Benjamin Muschko