Greg Oliver wrote:
> %Results = (
> $cty => { $dom => { $eng => "value"}} );
you might want to consider:
my $Results;
$Results->{$cty}->{$dom}->{$eng} = "value";
as that seem to be more readable. :-)
>
> I agree, but it isn't!!! The only other thing that could be it is the
> threads, and I am in over my head there (using a module).
ah.. threading issue. if you are using thread, you might want to consider
locking your subroutine to allow only one thread of execution at a time.
try:
sub SomeSub : locked{
#-- your usual stuff
}
this way, Perl will limit one thread to enter SomeSub at a time. try this
and see what happen. Threading, of course, is experimental(still?) :-)
david
>
> Thanks,
>
> Greg
>
>> david
>>
>> --
>> To unsubscribe, e-mail: [EMAIL PROTECTED]
>> For additional commands, e-mail: [EMAIL PROTECTED]
>>
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]