php - postgresql 最大执行时间
是否有一个选项可以与 PHP 中的 PostgreSQL 函数一起使用,以便您可以指定查询的最长执行时间?我不想从配置文件启用此功能,因为只需要限制某些查询。
Is there an option to use with PostgreSQL Functions in PHP, so you can specify a maxim execution time for a query ? I don't want to enable this from the config file because only certain queries need to be restricted.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在主查询之前从 php 运行一个查询
like
run from php a query before the main query
like
您可以使用
set_time_limit()
根据 PHP 文档:调用时,set_time_limit() 会从零重新启动超时计数器。换句话说,如果超时是默认的 30 秒,并且在脚本执行 25 秒后进行了诸如 set_time_limit(20) 之类的调用,则脚本将在超时之前总共运行 45 秒
。You can use
set_time_limit()
According to PHP doc:When called, set_time_limit() restarts the timeout counter from zero. In other words, if the timeout is the default 30 seconds, and 25 seconds into script execution a call such as set_time_limit(20) is made, the script will run for a total of 45 seconds before timing out
.