in reply to Re: Class::Std::Fast cache and threads
in thread Class::Std::Fast cache and threads
I don't actually want anything from Class::Std::Fast in my child threads. The children are only using thread-safe classes. I'm trying to use Class::Std::Fast in the main thread, and then later do something completely unrelated in child threads.
I understand that I could create a thread especially for Class::Std::Fast, using require instead of use,
becomesmy $s = STR->new; $s->one; $s->two; $s->three;
This would get STR out of my main thread and into it's own private child thread, but this hardly seems like an elegant or maintainable solution. I'm going to want to import STR at least twice in my code, and create a new thread just for this each time.threads->create( sub { require STR; STR->import; my $s = STR->new; $s->one; $s->two; $s->three; } )->join;
As for rewriting CPAN modules to meet my requirements, yes, using moose would be ideal, but I am lazy, and I'll comment out the croak in Class::Std::Fast first. I see no good reason why it should be there.
Is there really no way to :
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Class::Std::Fast cache and threads
by BrowserUk (Patriarch) on Oct 12, 2010 at 10:44 UTC | |
by Boldra (Curate) on Oct 12, 2010 at 11:22 UTC | |
by BrowserUk (Patriarch) on Oct 12, 2010 at 11:53 UTC |