PHP 线程和同步

发布于 2024-10-12 05:40:28 字数 198 浏览 2 评论 0原文

我是 PHP 新手,所以首先我决定实现一个单例。

虽然我能够在 php 中重新创建单例模式,但我不确定如何实现双重检查锁定。

这在 PHP 中是否可能/需要?我在某处读到 PHP 不是多线程的?有人可以证实吗?

如果是多线程,有人可以向我解释lock()或synchronize()在PHP中如何工作吗?

谢谢, 亨利

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

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

掐死时间 2024-10-19 05:40:28

无共享架构

PHP 有一个 Share-nothing
架构:

  • 与 HTTP 一样,每个请求都是不同的
  • 共享数据被下推到数据存储层
  • 避免使用前端控制器

这给了我们:

  • 负载平衡能力
  • 从一个数据中心到另一个数据中心的隐形故障转移
  • 更好的应用程序模块化
  • 更易于开发和调试

双重检查锁定

但我不知道如何实施
双重检查锁定。

一般来说,数据库层负责这一点。 MySQL(innodb) 标准具有例如行级别 锁定< /a>(这应该足够了)。

InnoDB 在行级别上进行锁定
并以非锁定方式运行查询
默认情况下一致读取,在
Oracle 的风格。

如果这还不够,那么 SQL 还具有例如 交易来实现这一点。

在线图书将事务定义为
“执行的操作序列
单个逻辑工作单元”

Fork 进程

就像幻灯片中所说的 PHP 有一个 Share-nothing-Architecture(传统),这也意味着 PHP 没有 线程(模型)。虽然你可以编译(默认情况下不启用) PHP 支持 fork 可以相互通信的进程。当您还编译 信号量函数 然后你可以做类似 sem_acquire< /a> 和 sem_release 但通常情况下不会。应用PHP。

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文