hardburn has asked for the wisdom of the Perl Monks concerning the following question:
I'm building a web application under mod_perl that needs to store short-term state information. Much of the information tends to change slowly, and is handled by a PostgreSQL database. However, there is one portion of the application that will be changing information (potentially) several times a minute.
I do not necessarily need an SQL database to do this (though the final results of this process might go back into PostgreSQL), but I do need it to have good performance. I need some sort of connection persistance across requests (like Apache::DBI). A completely in-memory database would be perfect.
Are there any existing modules that allow you to, say, grab a saved, in-memory hash from across Apache processes?
"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: Database for Transient Information
by perrin (Chancellor) on Mar 02, 2005 at 15:52 UTC | |
by hardburn (Abbot) on Mar 02, 2005 at 16:04 UTC | |
|
Re: Database for Transient Information
by dragonchild (Archbishop) on Mar 02, 2005 at 15:47 UTC | |
|
Re: Database for Transient Information
by manav (Scribe) on Mar 02, 2005 at 16:00 UTC | |
|
Re: Database for Transient Information
by jZed (Prior) on Mar 02, 2005 at 17:00 UTC |