PHP Threads and Synchronization

核能气质少年 提交于 2019-12-18 03:41:53

问题


I'm new to PHP, so to get started I've decided to implement a singleton.

While I am able to recreate the singleton pattern in php, but I am not sure how to implement double-checked locking.

Is that even possible/needed in PHP. I have read somewhere that PHP is not multithreaded? Can someone confirm that?

If it is multithreaded, can someone explain to me how lock() or synchronize() work in PHP?

Thanks, Henry


回答1:


Share-nothing Architecture

PHP has a Share-nothing Architecture:

  • Like HTTP, each request is distinct
  • Shared data is pushed down to the data-store layer
  • Avoid front controllers

This gives us:

  • Ability to load balance
  • Invisible failover from one datacenter to another
  • Better modularization of applications
  • Easier to develop and debug

double-checked locking

but I am not sure how to implement double-checked locking.

In general the database layer is responsible for this. MySQL(innodb) standard has for example row level locking(which should be sufficient for this).

InnoDB does locking on the row level and runs queries as nonlocking consistent reads by default, in the style of Oracle.

If this is not sufficient than SQL also has for example transactions to make this happen.

Books Online defines a transaction as a "sequence of operations performed as a single logical unit of work"

Fork processes

Like the slides say PHP has a Share-nothing-Architecture(traditional) which also does imply that PHP does NOT have a thread(model). Although you can compile(not enabled by default) PHP to have support to fork processes which can communicate with each other. When you also compile the Semaphore Functions then you can do things like sem_acquire and sem_release. But in general this does not apply PHP.



来源:https://stackoverflow.com/questions/4710869/php-threads-and-synchronization

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!