GuzzleHttp 请求设置超时时间并抓取报错信息

2020-02-19 23:29:09

之前调用一个三方的 WEB API,大量的请求超时,导致 PHP 进程被占用完。整个网站一直报 504。

其中一个优化措施就是对三方 API 调用设置超时时间。

use GuzzleHttp\Client;
        
$client = new Client();
$url = 'https://www.sunzhongwei.com';try {
    $res = $client->request('GET', $url, ['timeout' => 1.5]);
    $res = $res->getBody();
} catch(\Throwable $e) {
    Log::info('Fail to call api‘);
}

timeout 默认值是 0, 即一直等待,这非常危险。所以这里改成了 1.5 秒。


  • 2021-04-25 09:53:18

    android debug速度特别慢有时候卡住

    一直提示定在 Starting LLDB server。可能的原因是 Android Studio编译速度太慢了,就会一直卡在Starting LLDB server。可以通过设置 Run/Debug Configurations ——> Debugger ——> Debug type 为 Java 跳过 C/C++的调试,起码实现对 Java 程序的调试

  • 2021-04-25 09:54:19

    sequelize 时区配置

    sequelize 默认情况下, 保存日期时会转换成 +00:00时区,