in reply to Re: Securing the database password for web applications
in thread Securing the database password for web applications
That's often impractical for web applications, because:
For number 3, you need one connection per user. Under mod_perl+Apache::DBI, those connections stay open, but that inevitably leaves a lot of connections open that aren't being used. That's a lot of wasted memory. Preferably, you have exactly one connection per database.
So this solution simply doesn't scale.
"There is no shame in being self-taught, only in not trying to learn in the first place." -- Atrus, Myst: The Book of D'ni.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Securing the database password for web applications
by tirwhan (Abbot) on Mar 08, 2005 at 22:52 UTC |