in reply to Re^2: Perl Hash vs BerkeleyDB vs MySQL
in thread Perl's Hash vs BerkeleyDB vs MySQL
I don't understand your shared memory comment. MySQL is implemented as multiple threads which share memory, but they don't share memory with your program. BerkeleyDB does use a shared memory cache, and it runs resident in your process, so you are accessing data directly from shared memory, unlike MySQL where you access it over a socket.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Perl Hash vs BerkeleyDB vs MySQL
by pajout (Curate) on May 09, 2006 at 15:03 UTC | |
by perrin (Chancellor) on May 09, 2006 at 16:13 UTC | |
by pajout (Curate) on May 10, 2006 at 07:45 UTC |