Google Could Datastore の PHP API に関するドキュメントを見つけることができませんでした。NoSQL (MongoDB データベース) ウェブサイトを Google App Engine に移行しようとしていますが、現時点では Cloud Datastore が最適なオプションのようです。私が見つけた唯一のドキュメントは、Node.js、Python、および Java に関するものです。
質問する
797 次
2 に答える
0
Googleの公式 PHP クライアント ライブラリが GA になりました。
Composer を使用してインストールできます。
composer require google/cloud
それを使用するのは、それを含めるのと同じくらい簡単で、プロジェクトのクライアントを初期化し、操作を実行します。
# Includes the autoloader for libraries installed with composer
require __DIR__ . '/vendor/autoload.php';
# Imports the Google Cloud client library
use Google\Cloud\Datastore\DatastoreClient;
# Your Google Cloud Platform project ID
$projectId = 'YOUR_PROJECT_ID';
# Instantiates a client
$datastore = new DatastoreClient([
'projectId' => $projectId
]);
# The kind for the new entity
$kind = 'Task';
# The name/ID for the new entity
$name = 'sampletask1';
# The Cloud Datastore key for the new entity
$taskKey = $datastore->key($kind, $name);
# Prepares the new entity
$task = $datastore->entity($taskKey, ['description' => 'Buy milk']);
# Saves the entity
$datastore->upsert($task);
echo 'Saved ' . $task->key() . ': ' . $task['description'] . PHP_EOL;
公式のクライアント ライブラリより前の Cloud Datastore で最も広く使用されている PHP ライブラリは、現在も使用され、機能しています。https://github.com/tomwalder/php-gds
バージョン 3 の時点で、PHP GDS は v1 REST API をサポートしています。つまり、App Engine の外部の任意のコンピューティング サービスで使用できます。
于 2016-12-20T19:43:37.067 に答える