性能

借助 PHP 客户端库,您只需进行极少的配置,便可简化与 Google Ads API 的互动。不过,性能在很大程度上取决于库的使用和集成方式。

这些最佳实践中的大多数适用于所有语言。本指南将介绍专门针对 PHP 的错误。

Protobuf 实现

gRPC 和 Google Ads API 使用 Protobuf 来处理请求和响应消息。有两个实现可供选择,不过用 C 语言编写的实现性能更好。

如需了解详情,请参阅 Protobuf 指南

PHP 解释器的操作模式

PHP 是一种多用途的脚本语言,具有多种操作模式,具体取决于用途。PHP CGI(通用网关接口)具有明显的优势,因为它可以在执行之间共享资源。

PHP 版本

定期升级到较新的 PHP 版本是一种很好的做法,因为新版本通常能提高整体性能。支持的 PHP 版本列表

未使用的 Google Ads API 版本

客户端库的所有版本都支持多个 Google Ads API 版本。对于客户端库支持的每个 Google Ads API 版本,都有专门的软件包。

您可以从客户端库安全地移除专用于 Google Ads API 版本但未使用的软件包。由于这有助于加快执行速度或减少内存占用,因此客户端库提供了用于以编程方式执行此操作的实用程序。

示例

假设您要实现的客户端库仅使用最新的 API 版本 v18,并且您想移除对未使用的 API 版本 v17v16 的支持。

在项目的 composer.json 文件中,在 ApiVersionSupport 类中定义一个利用客户端库提供的实用程序的 Composer 脚本(名为 remove-google-ads-api-version-support):

"scripts": {
  "remove-google-ads-api-version-support": [
    "Google\\Ads\\GoogleAds\\Util\\ApiVersionSupport::remove"
  ]
}

然后,使用 Composer 脚本并将版本号作为参数,并输出一些状态消息:

# Change the current directory to the project directory.
cd /path/to/the/project

# Install the project.
composer install

# Output the vendor folder size and the list of Google Ads API versions that are
# supported before removing support for Google Ads API versions.
echo "# Supported Google Ads API versions:"
find ./vendor/googleads/google-ads-php/src/Google/Ads/GoogleAds/V* -maxdepth 0 | grep -o '..$'
echo "# Vendor folder size:"
du -sh ./vendor

# Use the Composer script to remove the unused versions v16 and v17 of the Google Ads API.
echo "# Removing support..."
composer run-script remove-google-ads-api-version-support -- 16 17

# Output the vendor folder size and the list of Google Ads API versions that are
# supported after removing support for Google Ads API versions.
echo "# Supported Google Ads API versions:"
find ./vendor/googleads/google-ads-php/src/Google/Ads/GoogleAds/V* -maxdepth 0 | grep -o '..$'
echo "# Vendor folder size:"
du -sh ./vendor

以下示例执行输出显示文件大小缩减了 50M,并且唯一剩余的受支持版本为 V18

# Supported Google Ads API versions:
V16
V17
V18
# Vendor folder size:
110M    ./vendor
# Removing support...
> Google\Ads\GoogleAds\Util\ApiVersionSupport::remove
Removing support for the version 16 of Google Ads API...
Done
Removing support for the version 17 of Google Ads API...
Done
# Supported Google Ads API versions:
V18
# Vendor folder size:
60M     ./vendor

开发环境与生产环境

PHP 是一种解释型语言,它会先编译指令,然后再执行这些指令。这通常是有利的,因为在开发期间,源代码经常发生变化,而执行时间并不那么重要。不过,在生产环境中,情况恰恰相反,因为稳定性和性能成为主要关注事项。

缓存

缓存是一种常见且强烈建议采用的做法,因为它可以存储预编译的脚本指令,从而提高性能并增强稳定性。

OPcache 是最常用的解决方案,默认可用。

自动充值

自动加载很常见,因为它可以通过加载有关类的预编译信息来提高性能和稳定性。

PHP 客户端库符合 PSR-4 的自动加载要求,并作为 composer.json 文件的一部分提供相关定义。然后,您就可以直接使用 Composer 的专用选项,例如 --optimize-autoloader--classmap-authoritative

日志记录

将记录器设置为 ERROR 等高级别有助于减少执行时间开销和内存用量。

如需了解详情,请参阅日志记录指南

调试和性能分析

我们建议停用调试程序和性能分析器工具,因为它们通常会带来一些执行时间开销。

预加载

从 PHP 7.4 开始,OPcache 预加载可用于在内存中预加载脚本,比常规缓存更进一步。

脚本必须经过专门设计才能利用此功能,但 PHP 客户端库无法利用此功能,因为没有实现 OPcache 预加载的通用方法,并且内存用量与性能提升之间的权衡因给定项目和执行方式而异。