本页面介绍了如何为 Memorystore for Memcached API 安装客户端库,以便可以使用所需的语言连接到 API。
安装客户端库
C++
如需详细了解此客户端库的要求和安装依赖项,请参阅设置 C++ 开发环境。
C#
在 Visual Studio 中安装Google.Cloud.Memcache.V1Beta2
程序包。如需了解详情,请参阅 Google Cloud .NET Memcached 安装文档。
Go
go get cloud.google.com/go/memcache/apiv1beta2
Java
如果您使用的是具有 BOW 的 Maven,请将以下内容添加到您的 pod.xml 文件中
<dependencyManagement> <dependencies> <dependency> <groupId>com.google.cloud</groupId> <artifactId>libraries-bom</artifactId> <version>20.8.0</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>com.google.cloud</groupId> <artifactId>google-cloud-memcache</artifactId> </dependency>
如果您使用的是不带 BoM 的 Maven,请将以下内容添加到您的依赖项中:
<dependency> <groupId>com.google.cloud</groupId> <artifactId>google-cloud-memcache</artifactId> <version>0.2.1</version> </dependency>
如果您使用的是 Gradle,请将以下内容添加到您的依赖项中:
compile 'com.google.cloud:google-cloud-memcache:0.2.1'
如果您使用的是 SBT,请将以下内容添加到您的依赖项中:
libraryDependencies += "com.google.cloud" % "google-cloud-memcache" % "0.2.1"
Node.js
npm install @google-cloud/memcache
Python
如需详细了解如何设置 Python 开发环境,请参阅 Python 开发环境设置指南。Mac/Linux
pip install virtualenv virtualenv <your-env> source <your-env>/bin/activate <your-env>/bin/pip install google-cloud-memcache
pip install virtualenv virtualenv <your-env> <your-env>\Scripts\activate <your-env>\Scripts\pip.exe install google-cloud-memcache
设置身份验证
-
Install the Google Cloud CLI, then initialize it by running the following command:
gcloud init
-
If you're using a local shell, then create local authentication credentials for your user account:
gcloud auth application-default login
You don't need to do this if you're using Cloud Shell.
登录屏幕随即出现。在您登录后,您的凭据会存储在 ADC 使用的本地凭据文件中。