【memory barrier】Should we update the README.barrier description.

Поиск
Список
Период
Сортировка
От postgresql_2016@163.com
Тема 【memory barrier】Should we update the README.barrier description.
Дата
Msg-id 1589072465169-0.post@n3.nabble.com
обсуждение исходный текст
Ответы Re: 【memory barrier】Should we update the README.barrier description.  (Simon Riggs <simon@2ndquadrant.com>)
Список pgsql-docs
Hi

When I read the introduction of Weaknesses of Memory Barriers in
README.barrier, the following maybe out-of-date now. 

Even very simple write operations often require additional synchronization.
For example, it's not safe for multiple writers to simultaneously execute
this code (supposing x is a pointer into shared memory):

    x->foo++;

Although this may compile down to a single machine-language instruction,
the CPU will execute that instruction by reading the current value of foo,
adding one to it, and then storing the result back to the original address.
If two CPUs try to do this simultaneously, both may do their reads before
either one does their writes.  *Eventually we might be able to use an atomic
fetch-and-add instruction for this specific case on architectures that
support
it, but we can't rely on that being available everywhere, and we currently
have no support for it at all.  Use a lock.*

Now, the postgres has support atomic operation and use it, in some cases we
have not use the lock.



--
Sent from: https://www.postgresql-archive.org/PostgreSQL-docs-f2165602.html



В списке pgsql-docs по дате отправления:

Предыдущее
От: Euler Taveira
Дата:
Сообщение: Re: Logical replication subscription owner
Следующее
От: Tom Lane
Дата:
Сообщение: Re: Another modest proposal for docs formatting: catalog descriptions