Subject: | prefork dependency could probably be removed |
Loading Digest::MD5 and Storable is probably not that bad for any application that already loads objects and cares about signatures:
[syeeda:~] nothingmuch % time perl -MDigest::MD5 -MStorable -e1
real 0m0.108s
user 0m0.065s
sys 0m0.021s
[syeeda:~] nothingmuch % time perl -e1
real 0m0.018s
user 0m0.003s
sys 0m0.009s
[syeeda:~] nothingmuch %