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.
我正在使用本地后缀发送带有 php 的 mail() 函数的纯文本邮件。不幸的是,邮件发送需要 2-4 秒,等待时间太长。有没有办法告诉 php() 函数不要等待后缀的响应?我怎样才能做到这一点?
不,在您当前的脚本中没有办法做到这一点。有些事情需要一些时间。
如果你想改进它,你必须设置一个队列系统来快速接受发送邮件的任务,然后在稍后的时间点异步执行。搜索“Gearman”和替代品。