Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is variable assignment atomic in go?

Tags:

concurrency

go

If I have two threads concurrently modifying a string field on a struct, will I always see one or the other string assigned to the field, but nothing else?

like image 310
Filip Haglund Avatar asked Jan 12 '16 17:01

Filip Haglund


1 Answers

No. If you need atomic operations, there is sync/atomic.

The Go Memory Model will have all the related details. From the top of the Memory Model document:

Programs that modify data being simultaneously accessed by multiple goroutines must serialize such access.

To serialize access, protect the data with channel operations or other synchronization primitives such as those in the sync and sync/atomic packages.

like image 121
JimB Avatar answered Sep 25 '22 09:09

JimB