Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在运行一个连接到 MySQL 数据库的 PHP 应用程序,该数据库有时对某些操作具有高负载和高争用。
有些动作非常重要,两个不同用户同时触发的两个进程有时需要在队列中处理。否则操作可能会发生两次,而这不应该发生。
您认为 PHP 和 MySQL 的性能如何才能克服这些问题?
通过使用MySQL 事务和/或锁定。