为什么 Perl 的 Archive::Tar 内存不足?
我使用下面的 Perl 代码列出 tar 存档中的文件。 tar 存档的大小始终约为 15MB。
my $file = shift;
my $tar = Archive::Tar->new("$file");
my @lists = $tar->list_files;
$tar->error unless @lists;
执行此代码会出现错误“内存不足”。我的 Linux 系统大约有 512MB,我不想增加系统内存。任何人都可以建议我是否可以修改此代码以获得更好的性能或使用其他代码来列出 tar 存档中的文件。
I am using below Perl code to list the files in tar archive. The size of the tar archive is always about 15MB.
my $file = shift;
my $tar = Archive::Tar->new("$file");
my @lists = $tar->list_files;
$tar->error unless @lists;
Executing this code gives me an error "Out of Memory". I have about 512MB in my Linux system and I dont want to increase the memory of my system. Can anyone please suggest me if this code can be modified for better performance or another code to list the files in tar archive.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
来自
Archive::Tar
常见问题解答:因此,根据上述内容,这应该是解决方案(未经测试):
/I3az/
From
Archive::Tar
FAQ:So based on above then this should be the solution (untested):
/I3az/
我在一个大焦油上尝试过,也遇到了错误。可能是库中的错误。
以下对我有用:
I tried that on a large tar and got an error too. Probably a bug in libs.
The following worked for me:
如果 Perl 不是必须的,请使用 tar
if Perl is not a must, use tar