in reply to Re: Explicit thread context
in thread Explicit thread context
I do have to wonder at the need for two separate interfaces though?The short answer is flexibility. The former is more descriptive; the latter more succinct. Use the style which suits you best.
thread->create( { context => 'list' }, ...
# -v-
thread->create( { list => 1 }, ...
What context results from this?The official answer would be The behavior is unspecified. The technical answer is that the code checks for context first, and would then ignore anything else.
threads->create( { scalar => 1, void => 1, context => list, list => 0 }, ...
My main objection is the effect on performance.At most, the penalty is a few exists calls (1 for context which is first in the code, up to 4 in the case of void which comes last), plus a hash fetch. Further, this feature is implemented entirely in XS code, and so is quite fast.
...
The additional complexity of parsing and validating the dual interface comes at a critical point in those applications that are most likely to make most use of them.
Additionally, if this feature is not used, there is no performance penalty. Therefore, if your code is really that super sensitive to response, don't use it.
|
---|