in reply to Design advice: Classic boss/worker program memory consumption
Basically, you want a database that's not on the parent heap. How about this:
use GDBM_File; tie(my %dataset, 'GDBM_File', 'tmp.db', &GDBM_NEWDB, 0600) or die; ...
I've assumed your dataset needs no serialization.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Design advice: Classic boss/worker program memory consumption
by locked_user sundialsvc4 (Abbot) on May 21, 2014 at 17:08 UTC | |
|
Re^2: Design advice: Classic boss/worker program memory consumption
by shadrack (Acolyte) on May 22, 2014 at 02:43 UTC |