Beefy Boxes and Bandwidth Generously Provided by pair Networks
more useful options
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
I'm trying to copy hash record structures from a global shared hash to a local copy, so the threads won't have to lock the global all the time.

Basically, what you are trying to do is the completely wrong way to go about things when using iThreads with shared data.

Shared data is already copied to every thread that uses it. Making further copies is just dangerous, unnecessary, and impractical. You would still need to lock the shared data to copy it to your local copy, and again when you put it back. The costs in terms of both time and memory to create duplicate local copies of shared data totally outway any percieved benefit from avoiding locking.

If you modify your local copy on two threads, and then need to update the shared copy with the changes, you have no way to resolve the conflicts of merging the changes.

Considerable effort by some very clever people has gone into making sharing work. It was difficult for them to get it to the point where it is now pretty safe, transparent and usable. For you to try and replicate that in user-level Perl code is fraught with dangers and ultimately, a complete waste of time and effort.

In case that isn't clear :) Don't do that!


Examine what is said, not who speaks.
"But you should never overestimate the ingenuity of the sceptics to come up with a counter-argument." -Myles Allen
"Think for yourself!" - Abigail        "Time is a poor substitute for thought"--theorbtwo         "Efficiency is intelligent laziness." -David Dunham
"Memory, processor, disk in that order on the hardware side. Algorithm, algorithm, algorithm on the code side." - tachyon

In reply to Re: Using clone/dclone with threads by BrowserUk
in thread Using clone/dclone with 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 avoiding work at the Monastery: (4)
As of 2024-04-25 16:21 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found