> Thanks on those comments. I don't know python and neither ruby, my > question is is python hard to learn of a guy who has pascal > background. The only advantage I know for python over ruby is speed. I > have heard people saying ruby on rails is a full stack web application > framework, is this the same for django?
I never got to try rails, but am quite comfortable with django. I too come from PHP, and python has been easy to learn. I have found that most of the "advanced" stuff I've ever dreamed about while on PHP, are built-in in python. Not sure what you mean with full-stack though. Maybe someone else is able to answer that one. > Which is better mod_python or FCGI? mod_python holds code in memory, just like mod_perl. This makes things go a whole lot faster. FCGI is the "traditional" way of doing things. For every request a new call (and perhaps a new spawn) is made to the fcgi binary. This makes is neat for very-low-load apps, and for loosy coders, as the memory is flushed for every new call. Whenever posible, I'd go with mod_python. FCGI is not bad, but requires a bit more memory and processor time. Kind regards, Chris Hoeppner www.pixware.org --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---

