Closed adrianbader closed 7 years ago
The doc does not make sense here, i will remove it.
The real meaning here is that if you put an item into memcached in thread A with connection A, and you want to get the item in thread B with connection B concurrently, these two operations are not synchronized. If you want B operation fetching the item successfully, you should make sure that B operation happens after A operation.
Thank you for the explanation! I fully agree.
In the Wiki, there is written
I do not understand this: ...But you should know, they are not synchronized, so you must make sure the synchronzation of data update... In which situation is a synchronisation needed and why? Thank you for your help!