Re: MP framework

2017-08-02 Thread Perrin Harkins
You can run Dancer on mod_perl using Plack. The Dancer documentation covers it. Or there's Catalyst. These frameworks are trying to be independent of the web server they run on, so they don't tie in to mod_perl beyond taking advantage of the speed. That doesn't stop you from mixing them with

Re: MP framework

2017-08-02 Thread tomcat
On 02.08.2017 11:49, 风河 wrote: We actually use both dancer and modperl. but dancer works separately, it doesn't require modperl installed. So I was asking if there is a framework for modperl which behaves as something like dancer. This is a bit vague as a question, for anyone to provide an

Re: MP framework

2017-08-02 Thread 风河
We actually use both dancer and modperl. but dancer works separately, it doesn't require modperl installed. So I was asking if there is a framework for modperl which behaves as something like dancer. On Wed, Aug 2, 2017, at 05:42 PM, André Warnier (tomcat) wrote: > On 02.08.2017 11:19, 风河 wrote:

Re: MP framework

2017-08-02 Thread tomcat
On 02.08.2017 11:19, 风河 wrote: Hi currently we were developing the methods mostly as handlers. is there a new popular framework for full stack development of modperl? Yes, many. See here : http://lmgtfy.com/?q=perl+web+development+frameworks We (still) use Template::Toolkit, which many

MP framework

2017-08-02 Thread 风河
Hi currently we were developing the methods mostly as handlers. is there a new popular framework for full stack development of modperl? thanks.