gearman / php和mysql之间的连接池

时间:2013-06-13 14:57:13

标签: php mysql transactions connection-pooling gearman

我有一些在php上实现的Gearman工作者。这些工作人员的每项任务都应该在自己的交易中执行。为了从这些工作者访问我的MySQL数据库,我需要像连接池这样的东西。你能为此提出一些建议(图书馆,框架等)吗?感谢

1 个答案:

答案 0 :(得分:1)

Client creates SQL statements 
Client passes SQL statements to mysql worker (in a batch or just one long string of   statements)
Worker performs the sql.

显然需要担心安全性,但实施应该很简单,不需要库。

如果你知道你的交易锁定水平很高,这可能会很好,因为可以在后台处理这些工作。