- About Scala
- Documentation
- Code Examples
- Software
- Scala Developers
Re: Arrays with volatile elements
Tue, 2009-01-13, 13:58
On Tue, Jan 13, 2009 at 11:53 AM, Philippe Monnaie <Philippe.Monnaie@gmail.com> wrote:
I'm not sure what you mean. There's no synchronization going on here - you can update different parts of the array as you like. There are guarantees about visibility of changes to other threads (which does potentially slow things down quite a bit), but nothing to prevent concurrent update.
Nice!
Just out of interest, would it be possible in a similar way to allow
simultaneous updates in different parts of the array? Or am I asking
for too much?
I'm not sure what you mean. There's no synchronization going on here - you can update different parts of the array as you like. There are guarantees about visibility of changes to other threads (which does potentially slow things down quite a bit), but nothing to prevent concurrent update.
Ah, I see. No, I don't think so. Or at least I can't think of a useful way to do it (there are obvious high overhead ways of doing it, but I don't think that they'd actually buy you anything)