Perl threads 摘要

Perl threads 摘要最近又写了一个多线程的小工具 对一些多线程的使用有了进一步的心得 Perl 创建线程有两种方式 正常通过 threads create 创建线程 用 async nbsp 创建一个调用匿名过程的线程 具体参考 perldocthrea 线程共享变量需要使用 threads shared 共享变量只能存储 scalar 共享变量的引用 如果存储 ListHash 的引用需使用 shared clo

最近又写了一个多线程的小工具,对一些多线程的使用有了进一步的心得。

  • Perl 创建线程有两种方式,正常通过threads->create 创建线程,用async  创建一个调用匿名过程的线程,具体参考perldoc threads。
  • 线程共享变量需要使用 threads::shared,共享变量只能存储scalar,共享变量的引用,如果存储List Hash的引用需使用shared_clone([@list]) shared_clone({%hash})。
  • 线程创建后最好join 或者detach,否则在退出时会有warning。
  • 线程的join 方式,使用threads 中提供的函数接口,可以做到及时释放资源,参考下边的例子
use strict; use warnings; use threads; use Data::Dumper; $|=1; sub test{ my $i = shift; my @x = (1..); #使用一个大的变量观察内存使用情况 sleep 2*$i; printf "%s run to the end.\n", threads->tid(); } for (reverse (0..10)){ threads->create(\&test,$_); } my $monitor = async { #用来观察子线程状态 sleep 1; while(1){ for(threads->list()){ printf "%s join? %s\n", $_->tid(), $_->is_joinable() ? 'true' : 'false'; } sleep 2; } }; $monitor->detach(); #方法1 $_->join() for threads->list() #方法2 #~ while(threads->list()){ #~ $_->join() for threads->list(threads::joinable); #~ }

使用方法1 的结果,最先产生的线程耗时最长,按此法join 会按顺序释放资源,后来的线程虽已结束,但仍然等待前者结束然后才能释放自己的资源,前者结束前资源一直被占用。运行此脚本过程中打开任务管理器,观察内存使用情况,可以看到脚本结束前资源一直占用最大,没有释放过。

4 run to the end. 2 join? false 3 join? false 4 join? true 3 run to the end. 2 join? false 3 join? true 4 join? true 2 run to the end. 2 join? true 3 join? true 4 join? true 1 run to the end.

使用方法2的结果,只join 已经完成的线程,资源会被及时释放。观察内存的使用情况,可以看到资源逐步递减,并没有被一直占用。

4 run to the end. 1 join? false 2 join? false 3 join? false 3 run to the end. 1 join? false 2 join? false 2 run to the end. 1 join? false 1 run to the end.

仅供参考,欢迎指正。

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请联系我们举报,一经查实,本站将立刻删除。

发布者:全栈程序员-站长,转载请注明出处:https://javaforall.net/233674.html原文链接:https://javaforall.net

(0)
全栈程序员-站长的头像全栈程序员-站长


相关推荐

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注

关注全栈程序员社区公众号