在 Google 容器引擎上上传存储和链接到图像
Uploading Storing and Linking to Images on Google Container Engine
我正在开发一个用户可以上传图片的应用程序。该应用程序有一个 NodeJs 后端,一个带有 Redis 和 Neo4j 的 Angular 前端,全部由 Kubernetes 进行 dockerize 和 运行。现在我想存储图片,但是有太多的服务我认为可以完成我不知道该怎么做的工作...我可以使用我的 Google Drive 帐户和 Drive Sdk 上传吗我的用户的图像?我应该查看 Google Cloud Storage 吗? Kubernetes 中的持久性存储选项怎么样?或者我可以使用我的 Flickr 帐户吗???有人能给我指出正确的方向吗...谢谢
使用 GCP 在云中上传和存储静态文件(例如图像)可能应该使用 Cloud Storage。
虽然 Google 驱动器和 Google 云存储都提供 API 上传文件,但云存储更适合您的用例。我摘录自 here
Cloud Storage is intended to be accessed primarily through its API and
provides all the functionality necessary for developers to use it as a
backing store for their own applications.
和
Cloud Storage enables developers to store their application data in
the Google cloud (and they’re responsible for the storage their app
consumes), whereas in Drive, users allow apps to interact with the
user’s private storage and content.
我正在开发一个用户可以上传图片的应用程序。该应用程序有一个 NodeJs 后端,一个带有 Redis 和 Neo4j 的 Angular 前端,全部由 Kubernetes 进行 dockerize 和 运行。现在我想存储图片,但是有太多的服务我认为可以完成我不知道该怎么做的工作...我可以使用我的 Google Drive 帐户和 Drive Sdk 上传吗我的用户的图像?我应该查看 Google Cloud Storage 吗? Kubernetes 中的持久性存储选项怎么样?或者我可以使用我的 Flickr 帐户吗???有人能给我指出正确的方向吗...谢谢
使用 GCP 在云中上传和存储静态文件(例如图像)可能应该使用 Cloud Storage。
虽然 Google 驱动器和 Google 云存储都提供 API 上传文件,但云存储更适合您的用例。我摘录自 here
Cloud Storage is intended to be accessed primarily through its API and provides all the functionality necessary for developers to use it as a backing store for their own applications.
和
Cloud Storage enables developers to store their application data in the Google cloud (and they’re responsible for the storage their app consumes), whereas in Drive, users allow apps to interact with the user’s private storage and content.