[sisyphus] perldoc cache
Alexey Tourbin
=?iso-8859-1?q?at_=CE=C1_altlinux=2Eru?=
Пт Апр 22 01:20:52 MSD 2005
Я реализовал кеширование в perldoc (для pod2man | nroff).
Чтобы кеширование включилось, нужно создать каталог ~/.perldoc.
* Fri Apr 22 2005 Alexey Tourbin <at на altlinux> 3.14-alt2
- implemented cache for nroff formatted output (mkdir ~/.perldoc)
$ mkdir ~/.perldoc
$ time perldoc perlre >/dev/null
perldoc perlre > /dev/null 3,98s user 0,06s system 99% cpu 4,064 total
$ ls ~/.perldoc
_usr_bin_pod2man_lax_usr_lib_perl5_pod_perlre_pod_nroff_man
$ time perldoc perlre >/dev/null
perldoc perlre > /dev/null 0,72s user 0,03s system 98% cpu 0,760 total
$
----------- следующая часть -----------
--- Pod-Perldoc-3.14/lib/Pod/Perldoc/ToMan.pm- 2004-12-01 01:20:19 +0300
+++ Pod-Perldoc-3.14/lib/Pod/Perldoc/ToMan.pm 2005-04-22 01:08:03 +0400
@@ -38,6 +38,9 @@ sub parse_from_file {
my $self = shift;
my($file, $outfh) = @_;
+ require Cwd;
+ $file = Cwd::realpath($file) || $file;
+
my $render = $self->{'__nroffer'} || die "no nroffer set!?";
# turn the switches into CLIs
@@ -88,7 +91,21 @@ sub parse_from_file {
and print "About to run $command\n";
;
- my $rslt = `$command`;
+ my $cache = $command;
+ $cache =~ tr/a-zA-Z0-9/_/cs;
+ $cache = "$ENV{HOME}/.perldoc/$cache";
+
+ my $rslt;
+ if (-f $cache and -M $cache < -M $file) {
+ local @ARGV = $cache; local $/ = undef;
+ $rslt = <>;
+ } else {
+ $rslt = `$command`;
+ unless ($file =~ m#/tmp/#) {
+ my $fh; open $fh, ">", $cache
+ and print $fh $rslt;
+ }
+ }
my $err;
----------- следующая часть -----------
Было удалено вложение не в текстовом формате...
Имя : =?iso-8859-1?q?=CF=D4=D3=D5=D4=D3=D4=D7=D5=C5=D4?=
Тип : application/pgp-signature
Размер : 189 байтов
Описание: =?iso-8859-1?q?=CF=D4=D3=D5=D4=D3=D4=D7=D5=C5=D4?=
Url : <http://lists.altlinux.org/pipermail/sisyphus/attachments/20050422/2727e18a/attachment-0003.bin>
Подробная информация о списке рассылки Sisyphus