in reply to Website Application Framework with Sybase, Apache & Perl: My Thoughts
At the risk of intruding upon what looks like a personal communiqué to mpeppler...
...this convenience and wealth of functionality in Perl has resulted in a decrease in ability to leverage the shell as well as a duplication of its functionality. (emphasis mine)
What functionality is no longer available such that one is no longer able to write code in this manner? Or do you mean that in the community of developers fewer people are skilled in shell scripting? What is the evidence for this, and why does it matter even if it is true? Why shouldn't one prefer to use Perl rather than an OS specific script?
Also, because so much is available within Perl, one tends to write modules to compentize complex apps instead of isolated shell scripts.
People componentize applications into modules because doing so significantly increases reusability and benefit from Perl's portability.
I would hate to have to recode all of my stored procedures whenever tables change
Changing your tables is neither a minor nor everyday activity. You must expect that changes at such a fundamental level will have cascading effects, and allocate proper time/resources to dealing with them; certainly anyway if you are attempting to utilize database optimizations like stored procedures (although IANASPE (stored procedures expert) :)
is it conceivable that the stored procedures could tax the RAM of the database server?
RAM is generally consumed by data structures, not procedures. I think you would require truly vast numbers of them to impact memory performance.
In sum, if your database server is a Pentium 133 and you change your table schemas with unusual frequency in a software package guaranteed only to run on *nix, then I can see where you're coming from. Otherwise, I think you're overly concerned with bottlenecks and maintenance issues in the wrong places.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Website Application Framework with Sybase, Apache & Perl: My Thoughts
by mpeppler (Vicar) on Dec 18, 2002 at 21:44 UTC | |
by Ryszard (Priest) on Dec 19, 2002 at 06:37 UTC | |
by mpeppler (Vicar) on Dec 19, 2002 at 16:08 UTC | |
by Ryszard (Priest) on Dec 19, 2002 at 16:48 UTC | |
|
Re: Re: Website Application Framework with Sybase, Apache & Perl: My Thoughts
by princepawn (Parson) on Dec 20, 2002 at 15:36 UTC |