Ask a Question related to PERL Modules, Design and Development.
-
Makavy #1
Perl module disk usage, for embedded system.
Hey,
We're concidering including perl in an embedded system.
Disk and RAM usage are parameter that should be minimized.
We have already some applications in Perl, which use several Perl
modules.
My objective is to estimate the minimum disk usage of the Perl
installation (includeing all required module)
My questions are:
- How can I determine how much disk space does a module require?
- What components of the Perl installation are actually critical for it
to run?
- just the executable? (the interpreter - is it realy independent?)
- only *.pm file (and their dependencies) of modules that are
required. (modeul that are used in my perl scripts)
- Or the other way: what components can be deleted from the standard
Perl installation?
- I bet documentation can be deleted (the pod files are ~5MB, are
there more ?)
(~60 MB)
General questions:
- How can I find out which modules are installed?
(using a Pc with Linux on it) I've tried :
1) perllocale.pod - does not contain a modules list, it shows
some documentation file)
2) Running script :
#!/usr/local/bin/perl
use ExtUtils::Installed;
my $instmod = ExtUtils::Installed->new();
foreach my $module ($instmod->modules()) {
my $version = $instmod->version($module) || "???";
print "$module -- $version\n";
but it print only the perl version.
}
- How can I uninstall a specific module?
( I don't have ppm.)
P.S:
About RAM usage, is there a resource for RAM usage estimates of perl
modules?
(Or do I have to load the modules and check the RAM usage myself)
Thank in advance for any comment,
Erez Makavy.
Makavy Guest
-
Scratch disk & Memory usage
I can't seem to find an answer in the Knowledge Base articles, so I hope some one can clarify something for me. Also, the info in PE's on line Help... -
Disk usage oddity
I'm running Ubuntu Breezy on a Dell Dimension 8100. I have a 60GB (hda), with Windows ME installed and a 160GB (hdb) with Ubuntu. If I type "df... -
Looking for disk usage trends over time tool...any suggestions?
anybody here using Big Brother (http://www.bb4.com)? If yes, can we have some comparison of big brother with other tools. thanks -manu... -
XML/XSLT module usage in web apps
Hi folks, I'm working on a team developing a Perl based web interface to a corporate back-end that is exposed through a 'web-services-like'... -
Oracle disk contention/ cpu usage
Hi all Just been lumbered installing the application my company support on an oracle installation and know nothing about it, normally handle...



Reply With Quote

