Beefy Boxes and Bandwidth Generously Provided by pair Networks
P is for Practical
 
PerlMonks  

Re: Coro threads

by rcaputo (Chaplain)
on Feb 02, 2010 at 21:56 UTC ( [id://821047]=note: print w/replies, xml ) Need Help??


in reply to Coro threads

Be aware of the differences between Coro and threads. Most importantly, Coro is cooperative threads. Only one CPU is used. If any coroutine blocks, so does the entire program.

use strict; use warnings; use 5.010; use Coro; my @threads; for my $t ( 1 .. 3 ) { push @threads, async { print "coro $t says hi $_\n" for 1..3; }; } for (@threads) { $_->join; }
... prints ...
coro 1 says hi 1 coro 1 says hi 2 coro 1 says hi 3 coro 2 says hi 1 coro 2 says hi 2 coro 2 says hi 3 coro 3 says hi 1 coro 3 says hi 2 coro 3 says hi 3

Coro has a yield() call which can be used to interleave coroutines. However, libraries that don't call yield() or use other Coro facilities can still block everything.

Also, yield() doesn't involve additional CPUs, so cpu-intensive programs may benefit more from threads or fork().

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://821047]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others surveying the Monastery: (4)
As of 2024-04-25 12:37 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found