Does Python have the equivalent of the Java volatile
concept?
In Java there is a keyword volatile
. As far as I know, when we use volatile
while declaring a variable, any change to the value of that variable will be visible to all threads running at the same time.
I wanted to know if there is something similar in Python, so that when the value of a variable is changed in a function, its value will be visible to all threads running at the same time.
Volatile variables in concurrency programming refer to variables whose values must be retrieved from main memory each time they are accessed.
Python indeed does not have a final type, it does have immutable types such as tuples but that is something else.
The volatile modifier is used to let the JVM know that a thread accessing the variable must always merge its own private copy of the variable with the master copy in the memory. Accessing a volatile variable synchronizes all the cached copied of the variables in the main memory.
There are some uses of volatile that are NOT deprecated, because they are useful (e.g. in code that directly loads or stores from specified memory locations, such as in device drivers).
As far as I know, when we use volatile while declaring a variable, any change to the value of that variable will be visible to all threads running at the same time.
volatile
is a little more nuanced than that. volatile
ensures that Java stores and updates the variable value in main memory. Without volatile
, the JVM is free to store the value in the CPU cache instead, which has the side effect of updates to the value being invisible to different threads running on different CPU cores (threads that are being run concurrently on the same core would see the value).
Python doesn't ever do this. Python stores all objects on a heap, in main memory. Moreover, due to how the Python interpreter loop uses locking (the GIL), only one thread at a time will be actively running Python code. There is never a chance that different threads are running a Python interpreter loop on a different CPU.
So you don't need to use volatile
in Python, there is no such concept and you don't need to worry about it.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With