in reply to Re^2: Threads or Forking?
in thread Threads or Forking?
But remember this. Read-only at the Perl level does not mean read-only at the C-level.
With COW, If you use a read-only variable, that is a number read from a file, in a calculation, the IV or NV field of that variable will be written to and the 4k page containing that scalar will have to be copied.
If you take a reference to a read-only scalar, the flags field in that scalar will be updated and the 4k page will be copied.
And there are a dozen or so other flags and fields that can be modifed as a result of Perl-level read accesses to a scalar, hash or array that will cause pages to be copied.
|
|---|