Welcome to the main channel on the development of MoarVM, a virtual machine for NQP and Rakudo (moarvm.org). This channel is being logged for historical purposes.
Set by lizmat on 24 May 2021.
lizmat And yet another Rakudo Weekly News hits the Net: rakudoweekly.blog/2024/01/22/2024-04-marrow/ 12:40
slicer Hello, 18:49
I'm trying to gain insights from MoarVM, and I do have a question:
Given that concurrent access to VMArrays is considered erroneous, does it mean arrays in MoarVM are never shared across OS threads? If so then how does Raku synchronize concurrent access to shared arrays? Is this synchronization implemented in the Rakudo project, or is it implemented at all? So far only ConcBlockingQueue sync its operations. Thanks
for a reply.
lizmat slicer: VMArrays and VMHashes *are* shared between all threads: code accessing them should make sure that only one thread accesses / mutates at a time 19:41
the Raku concepts of: react whenever { ... } help with that, because the code inside the whenever is guaranteed to be run by one thread at a time 19:42
afk& 19:43
slicer82 Thanks lizmat, so we will need to explicitly lock using Lock when accessing these data structures in start { ... } and APIs like Thread and Promise? 20:31
lizmat slicer: you can, but as I said, there are constructs in Raku that will take care of that for you 22:38
tellable6 lizmat, I'll pass your message to slicer82