- 论坛徽章:
- 0
|
刚开始学coro,不太熟悉
请教一下coro多线程抓网页的例子。
coro在碰见线程阻塞会自动调度到其他线程吗,还需要手工cede吗?- #!/usr/local/bin/perl
- #测试多个anyevent:http函数的处理
- use strict;
- use Coro;
- use AnyEvent::HTTP;
- my $coro1 = async {
-
- http_get ("http://www.baidu.com/s?wd=1", cb => Coro::rouse_cb );
- my ($content, $hdr) = Coro::rouse_wait;
- print "1.$hdr->{Status}.\n";
- http_get ("http://www.baidu.com/s?wd=2", cb => Coro::rouse_cb );
- ($content, $hdr) = Coro::rouse_wait;
- print "2.$hdr->{Status}.\n";
- return 3;
- };
-
- my $coro2 = async {
- http_get ("http://www.baidu.com/s?wd=a", cb => Coro::rouse_cb );
- my ($content, $hdr) = Coro::rouse_wait;
- print "a.$hdr->{Status}.\n";
- http_get ("http://www.baidu.com/s?wd=b", cb => Coro::rouse_cb );
- ($content, $hdr) = Coro::rouse_wait;
- print "b.$hdr->{Status}.\n";
- return 4;
- };
- my $result = $coro1->join;
- print "$result.\n";
- $result = $coro2->join;
- print "$result.\n";
- #-bash-3.00$ perl coro8.pl
- #1.200.
- #2.200.
- #3
- #a.200.
- #b.200.
- #4
- #-bash-3.00$
复制代码 我这么写,从结果看还是串行的,请教一下正确的写法? |
|