in reply to Re^3: threads::shared referencing confusion
in thread threads::shared referencing confusion

If I understand ikegami correctly, you can only use a DB handle in the thread that created it. Regardless of any concurrent operations.

I didn't say that. It might be true, but it's not what I said.

I said you couldn't share one.

So how could multiple threads have a copy of the handle if it can't be shared? Through the cloning process that happens a new thread is created.

my $x = 123; ( async { $x = 456; say $x; # 456 } )->join(); say $x; # 123

There are two $x since the entire interpreter is cloned when it creates a thread.

There's even a callback that allows libraries with external resources to clone themselves. Whether DBI and DBD::SQLite takes advantage of that or not is unknown to me. But I find it unlikely. How do you clone a database connection? So it's probably true that one can only use DB handle in the thread that created it.

Replies are listed 'Best First'.
Re^5: threads::shared referencing confusion
by etj (Priest) on Aug 22, 2024 at 14:36 UTC
    You wrote:
    my $x = 123; ( async { $x = 456; say $X; # 456 } )->join(); say $x; # 123
    but I don't think you tried it; on the line you annotate with # 456, you probably mean to say $x, but you put say $X. Tragically, Perl is case-sensitive when it comes to variables.

      Thanks, fixed.