php - postgresql 最大执行时间

发布于 2024-10-13 22:04:26 字数 86 浏览 1 评论 0原文

是否有一个选项可以与 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 技术交流群。

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

发布评论

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

评论(2

唐婉 2024-10-20 22:04:26

在主查询之前从 php 运行一个查询

like

SET statement_timeout TO 5000;

run from php a query before the main query

like

SET statement_timeout TO 5000;
℉服软 2024-10-20 22:04:26

您可以使用 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.

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