<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments for JT Dev</title>
	<atom:link href="http://www.jtict.com/blog/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.jtict.com/blog</link>
	<description>About programming stuff</description>
	<lastBuildDate>Mon, 13 Feb 2012 10:22:22 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
	<item>
		<title>Comment on Rails, Wicket, Grails, Play, Tapestry, Lift, JSP, Context by Green</title>
		<link>http://www.jtict.com/blog/rails-wicket-grails-play-lift-jsp/comment-page-2/#comment-33765</link>
		<dc:creator>Green</dc:creator>
		<pubDate>Mon, 13 Feb 2012 10:22:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.jtict.com/blog/?p=68#comment-33765</guid>
		<description>Sorry, forgot to mention the pull request is here: https://github.com/jtdev/blogpost_files/pull/10</description>
		<content:encoded><![CDATA[<p>Sorry, forgot to mention the pull request is here: <a href="https://github.com/jtdev/blogpost_files/pull/10" rel="nofollow">https://github.com/jtdev/blogpost_files/pull/10</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Rails, Wicket, Grails, Play, Tapestry, Lift, JSP, Context by Green</title>
		<link>http://www.jtict.com/blog/rails-wicket-grails-play-lift-jsp/comment-page-2/#comment-33764</link>
		<dc:creator>Green</dc:creator>
		<pubDate>Mon, 13 Feb 2012 10:21:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.jtict.com/blog/?p=68#comment-33764</guid>
		<description>Hello, I&#039;ve just added a playapp + rythm template engine into your testing set. Rythm provides basically the the same level of performance with Japid (on my machine for 1000 product and 20 concurrent requests, the mean time of rythm is around 61ms, and Japid around 55ms) but much more easier to integrate with Play. The motivation for me to design this yet another static template engine is to create a Razor like syntax, fast, and easy to use tool. Migration from groovy to rythm is simple:

1. rewrite your view file using rythm syntax (it&#039;s very easy, trust me)
2. annotate with your corresponding controller method with @UseRythmTemplateEngine when the view is changed to rythm. 

And that&#039;s all. No need for play rythm:gen, and no need to rewrite your controller and make it extends RythmController. You can even reuse your FastTags in your application path without any expense.

Check the source code and you will find how it works.</description>
		<content:encoded><![CDATA[<p>Hello, I&#8217;ve just added a playapp + rythm template engine into your testing set. Rythm provides basically the the same level of performance with Japid (on my machine for 1000 product and 20 concurrent requests, the mean time of rythm is around 61ms, and Japid around 55ms) but much more easier to integrate with Play. The motivation for me to design this yet another static template engine is to create a Razor like syntax, fast, and easy to use tool. Migration from groovy to rythm is simple:</p>
<p>1. rewrite your view file using rythm syntax (it&#8217;s very easy, trust me)<br />
2. annotate with your corresponding controller method with @UseRythmTemplateEngine when the view is changed to rythm. </p>
<p>And that&#8217;s all. No need for play rythm:gen, and no need to rewrite your controller and make it extends RythmController. You can even reuse your FastTags in your application path without any expense.</p>
<p>Check the source code and you will find how it works.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Rails, Wicket, Grails, Play, Tapestry, Lift, JSP, Context by Makoto</title>
		<link>http://www.jtict.com/blog/rails-wicket-grails-play-lift-jsp/comment-page-2/#comment-33004</link>
		<dc:creator>Makoto</dc:creator>
		<pubDate>Wed, 01 Feb 2012 06:14:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.jtict.com/blog/?p=68#comment-33004</guid>
		<description>I&#039;ve found your benchmarks to be useful, however, I have also tried running these in Linux as opposed to Windows and have found that they run significantly faster in Linux.  One reason for this is that unlike IIS which is designed to run on the kernel, these other web servers cannot run on the kernel in Windows and can&#039;t get the best performance.</description>
		<content:encoded><![CDATA[<p>I&#8217;ve found your benchmarks to be useful, however, I have also tried running these in Linux as opposed to Windows and have found that they run significantly faster in Linux.  One reason for this is that unlike IIS which is designed to run on the kernel, these other web servers cannot run on the kernel in Windows and can&#8217;t get the best performance.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Rails, Wicket, Grails, Play, Tapestry, Lift, JSP, Context by Makoto</title>
		<link>http://www.jtict.com/blog/rails-wicket-grails-play-lift-jsp/comment-page-2/#comment-32923</link>
		<dc:creator>Makoto</dc:creator>
		<pubDate>Mon, 30 Jan 2012 16:46:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.jtict.com/blog/?p=68#comment-32923</guid>
		<description>Romain,

The difference between Play on Java vs Play on Scala is simple, they use different template engines.

The default templating in the Java version uses Groovy, whereas the Scala version uses it&#039;s own Scala based template engine that generates precompiled classes when building the site. The Scala version is more similar to the Japid template engine since Japid also generates code.</description>
		<content:encoded><![CDATA[<p>Romain,</p>
<p>The difference between Play on Java vs Play on Scala is simple, they use different template engines.</p>
<p>The default templating in the Java version uses Groovy, whereas the Scala version uses it&#8217;s own Scala based template engine that generates precompiled classes when building the site. The Scala version is more similar to the Japid template engine since Japid also generates code.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Rails, Wicket, Grails, Play, Tapestry, Lift, JSP, Context by ruslanasa</title>
		<link>http://www.jtict.com/blog/rails-wicket-grails-play-lift-jsp/comment-page-2/#comment-31541</link>
		<dc:creator>ruslanasa</dc:creator>
		<pubDate>Thu, 05 Jan 2012 22:37:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.jtict.com/blog/?p=68#comment-31541</guid>
		<description>Seels Lift and Wicket apps have problems that should be solved: http://apache-wicket.1842946.n4.nabble.com/Web-framework-performance-comparison-td3562647.html</description>
		<content:encoded><![CDATA[<p>Seels Lift and Wicket apps have problems that should be solved: <a href="http://apache-wicket.1842946.n4.nabble.com/Web-framework-performance-comparison-td3562647.html" rel="nofollow">http://apache-wicket.1842946.n4.nabble.com/Web-framework-performance-comparison-td3562647.html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Rails, Wicket, Grails, Play, Tapestry, Lift, JSP, Context by Romain</title>
		<link>http://www.jtict.com/blog/rails-wicket-grails-play-lift-jsp/comment-page-2/#comment-30922</link>
		<dc:creator>Romain</dc:creator>
		<pubDate>Thu, 29 Dec 2011 00:44:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.jtict.com/blog/?p=68#comment-30922</guid>
		<description>How can you explain the huge performance difference between Play using Java an Play using Scala?</description>
		<content:encoded><![CDATA[<p>How can you explain the huge performance difference between Play using Java an Play using Scala?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Rails, Wicket, Grails, Play, Tapestry, Lift, JSP, Context by Paulo Coutinho</title>
		<link>http://www.jtict.com/blog/rails-wicket-grails-play-lift-jsp/comment-page-2/#comment-29932</link>
		<dc:creator>Paulo Coutinho</dc:creator>
		<pubDate>Fri, 16 Dec 2011 20:47:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.jtict.com/blog/?p=68#comment-29932</guid>
		<description>Hi,

Can you add the new grails version? (grails 2.0)

Thanks.</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>Can you add the new grails version? (grails 2.0)</p>
<p>Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Rails, Wicket, Grails, Play, Tapestry, Lift, JSP, Context by Vincent</title>
		<link>http://www.jtict.com/blog/rails-wicket-grails-play-lift-jsp/comment-page-2/#comment-28881</link>
		<dc:creator>Vincent</dc:creator>
		<pubDate>Sun, 27 Nov 2011 23:53:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.jtict.com/blog/?p=68#comment-28881</guid>
		<description>Great benchmark, Thx.
Since I like a lot Scala, Lift and Play! are the frameworks I am looking at and it&#039;s nice
to have such a performance test to compare the two.</description>
		<content:encoded><![CDATA[<p>Great benchmark, Thx.<br />
Since I like a lot Scala, Lift and Play! are the frameworks I am looking at and it&#8217;s nice<br />
to have such a performance test to compare the two.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Rails, Wicket, Grails, Play, Tapestry, Lift, JSP, Context by glava</title>
		<link>http://www.jtict.com/blog/rails-wicket-grails-play-lift-jsp/comment-page-2/#comment-28003</link>
		<dc:creator>glava</dc:creator>
		<pubDate>Fri, 04 Nov 2011 13:07:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.jtict.com/blog/?p=68#comment-28003</guid>
		<description>Its a freemarker:))</description>
		<content:encoded><![CDATA[<p>Its a freemarker:))</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Rails, Wicket, Grails, Play, Tapestry, Lift, JSP, Context by glava</title>
		<link>http://www.jtict.com/blog/rails-wicket-grails-play-lift-jsp/comment-page-2/#comment-28001</link>
		<dc:creator>glava</dc:creator>
		<pubDate>Fri, 04 Nov 2011 12:59:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.jtict.com/blog/?p=68#comment-28001</guid>
		<description>Awesome test, but I&#039;m not sure what grails-fm is.
Super happy about play results, cant wait 2 ;)</description>
		<content:encoded><![CDATA[<p>Awesome test, but I&#8217;m not sure what grails-fm is.<br />
Super happy about play results, cant wait 2 <img src='http://www.jtict.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>

