durusmail: quixote-users: Quixote / mod_python - test workflow?
Unicode support for Quixote 2
2004-09-03
2004-09-03
2004-09-03
2004-09-03
Quixote / mod_python - test workflow?
2004-09-04
Re: R: [Quixote-users] Quixote / mod_python - test workflow?
single word attributes in html.htmltag()
2004-09-05
Re: single word attributes in html.htmltag()
2004-09-06
2004-09-04
2004-09-08
Python Best of Breed web app snippets / small webapps
2004-09-08
2004-09-10
2004-09-09
2004-09-09
2004-09-09
2004-09-09
Quixote / mod_python - test workflow?
Martin Maney
2004-09-04
On Fri, Sep 03, 2004 at 04:32:40PM -0700, rtjohan@syspres.com wrote:
> Just getting started with Quixote + mod_python. Starting by modifying
> the demo app, but changes are not coming up? So, wondering what's a
> good test workflow when using Quixote & mod_python for web application?
> Does apache need to be restarted after changes?

Yep.  The wonderful thing about mod_python is that it speeds things up
by reusing the already-loaded app; the awful thing about mod_python is
that in order to speed things up it continues to use the already-loaded
version of the app.  :-)

IMO plain old CGI is da bomb for development.  It services requests
more slowly, sure, but that's a small price to pay for not having to
restart the whole bloody server in order to fix a stupid typo.  First
make it right, then make it fast.  :-)

--
Show me your flowcharts and conceal your tables, and I shall continue
to be mystified.  Show me your tables, and I won't usually need your
flowcharts; they'll be obvious.  -- Brooks


reply