Beefy Boxes and Bandwidth Generously Provided by pair Networks
Keep It Simple, Stupid
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??

The trick I usually do in such cases is to send the object serialized (with Storable freeze) through the queue. That, obviously, means the objects represent more a IPC then actual memory sharing, but you didn't give enough information to know if serializing the values is appropriate.

Note that threads in Perl are not like threads in C, or Python, or Java. In all those languages, all threads share the memory with every other thread (note that python gives up real concurrency to do that). In Perl, you can only share specific data. And there are a set of limits on how the shared data should look like.

This makes threads in Perl unbearable for a lot of scenarios, others simply get much harder, but the bright side is that Perl has real concurrency (while Python has a Global Interpreter Lock). But usually, in Perl, when you want to use threads, you really have to design your app with that in mind, you can't just parallellize a small part of the code.

daniel

In reply to Re: how to make a module and its methods accessable between paren t and child threads by ruoso
in thread how to make a module and its methods accessable between paren t and child threads by Anonymous Monk

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

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

    No recent polls found