search
HomeBackend DevelopmentPHP TutorialCloud Storage: Comparison between Alibaba Cloud and Qiniu_PHP Tutorial

Conclusion:

  阿里云存储 七牛云存储
标准:REST、HTTP 99%符合 50%
基本功能:送二级域名、绑定域名、CDN 支持 支持
自定义文件HTTP header 支持 少量支持
高级服务:图片处理 不提供 很完善地提供
收费策略 收费 小流量免费。大流量收费。
官方PHP SDK 差,依赖亚马逊http库,而不是PHP官方PEAR HTTP_Request2

Rewrite the official confusing PHP SDK of Alibaba Cloud Storage into PEAR, and then download it as an apk.

Then I want to migrate the picture server to cloud storage so that it does not occupy VPS bandwidth. Only then did I discover that Alibaba Cloud OSS only has the simplest file storage function and does not support image processing.

For example, the most commonly used functions of image servers:

1. Upload an original image and automatically generate various images of any resolution in real time

For example, the original picture

http://example.com/2.jpg

Then request any resolution, and the server will automatically generate and output it when requesting, such as

http://example.com/2.jpg?resolution=1280x720

2. Automatic format conversion

For example http://example.com/2.jpg?format=png

Since Alibaba Cloud Storage does not support the image function, it cannot be used. Consider migrating to Qiniu.

Refer to Qiniu official PHP SDK, rewrite it into PHP PEAR package, and find that Qiniu API is not REST.

API comparison is as follows:

  阿里云存储 七牛云存储
上传文件 HTTP PUT 资源URI HTTP POST up.qiniu.com
删除文件 HTTP DELETE 资源URI HTTP POST rs.qbox.me
认证 HTTP header Authorization 一会儿使用HTTP header Authorization,一会儿使用POST token

Alibaba Cloud Storage API CURL demo:

Upload files:

curl -i -X <span '</span><span PUT</span><span '</span> -T <span '</span><span 1.jpg</span><span '</span> <span '</span><span http://com-163-sinkcup.oss.aliyuncs.com/1.jpg</span><span '</span> -H <span '</span><span Authorization: OSS asdf:qwer</span><span '</span> -H <span '</span><span Content-Type:image/jpeg</span><span '</span>

curl -i -X <span '</span><span DELETE</span><span '</span> <span '</span><span http://com-163-sinkcup.oss.aliyuncs.com/2.jpg</span><span '</span>

Qiniu Cloud Storage API CURL demo:

Upload files (it can be seen that Qiniu puts the bucket in the token authentication, which technically prevents Qiniu from achieving "public upload"):

curl -i -F <span '</span><span file=@2.jpg</span><span '</span> -F <span '</span><span token=asdf</span><span '</span> -F <span '</span><span key=2.jpg</span><span '</span> <span '</span><span http://up.qiniu.com/</span><span '</span>

curl -i -X <span '</span><span POST</span><span '</span> -H <span '</span><span Authorization: QBox asdf</span><span '</span> <span '</span><span http://rs.qbox.me/delete/com-163-sinkcup:1.jpg</span><span '</span>

It can be seen that Alibaba Cloud Storage is technically rigorous and uses standard REST. Qiniu no longer uses tokens in some places, but uses HTTP header Authorization, which may be being improved.

The picture function comparison is as follows:

Alibaba Cloud Storage Qiniu
  阿里云存储 七牛云存储
自动生成任意分辨率 支持
自动生成任意格式 支持
webp 支持,可节约app大量流量
Cloud Storage
Automatically generate any resolution None Support
Automatically generate any format None Support
webp None Supported, can save a lot of app traffic

Qiniu’s picture demo:

Original image 103KB: http://com-163-sinkcup.qiniudn.com/6ffe255fab20747c8872638870268703

Automatically generate jpg 79KB: http://com-163-sinkcup.qiniudn.com/6ffe255fab20747c8872638870268703?imageMogr/v2/auto-orient/thumbnail/1366x768/quality/80/format/jpg

Automatically generate webp 23KB: http://com-163-sinkcup.qiniudn.com/6ffe255fab20747c8872638870268703?imageMogr/v2/auto-orient/thumbnail/1366x768/quality/80/format/webp

Because the image function provided by Qiniu is extremely powerful, supporting webp is particularly important for saving traffic on the mobile Internet (Android and ios apps save 70% traffic), and Qiniu uses the Go language and wrote a book ("Go Language Programming》Douban), indicating that it is technically very strong and will support REST in the future, so I finally decided to use Qiniu Cloud Storage.

The PHP SDKs of Alibaba Cloud and Qiniu are both non-standard and cannot be used, so they can only be rewritten. I rewrote it, here it is:

Qiniu Cloud Storage PHP PEAR package download: http://www.cnblogs.com/sink_cup/p/PHP_PEAR_Services_Qiniu.html

Alibaba Cloud Storage PHP PEAR package download: http://www.cnblogs.com/sink_cup/p/PHP_PEAR_Services_Aliyun_OSS.html

1% of Alibaba Cloud Storage does not meet standards:

The custom HTTP header uses lowercase letters, which is inconsistent with HTTP common sense. For example, it is wrong for Alibaba Cloud to use x-oss-acl, and X-Oss-Acl should be used.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/440204.htmlTechArticleConclusion: Alibaba Cloud Storage Qiniu Cloud Storage Standard: REST, HTTP 99% complies with 50% Basic functions: get two free Level domain name, bound domain name, CDN supports custom files, HTTP header supports less...
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Vue3+TS+Vite开发技巧:如何进行数据加密和存储Vue3+TS+Vite开发技巧:如何进行数据加密和存储Sep 10, 2023 pm 04:51 PM

Vue3+TS+Vite开发技巧:如何进行数据加密和存储随着互联网技术的快速发展,数据的安全性和隐私保护变得越来越重要。在Vue3+TS+Vite开发环境下,如何进行数据加密和存储,是每个开发人员都需要面对的问题。本文将介绍一些常用的数据加密和存储的技巧,帮助开发人员提升应用的安全性和用户体验。一、数据加密前端数据加密前端加密是保护数据安全性的重要一环。常用

如何在 Windows 11 上清理缓存:详细的带图片教程如何在 Windows 11 上清理缓存:详细的带图片教程Apr 24, 2023 pm 09:37 PM

什么是缓存?缓存(发音为ka·shay)是一种专门的高速硬件或软件组件,用于存储经常请求的数据和指令,这些数据和指令又可用于更快地加载网站、应用程序、服务和系统的其他部分。缓存使最常访问的数据随时可用。缓存文件与缓存内存不同。缓存文件是指经常需要的文件,如PNG、图标、徽标、着色器等,多个程序可能需要这些文件。这些文件存储在您的物理驱动器空间中,通常是隐藏的。另一方面,高速缓存内存是一种比主内存和/或RAM更快的内存类型。它极大地减少了数据访问时间,因为与RAM相比,它更靠近CPU并且速度

肯睿Cloudera宣布新任大中华区副总裁肯睿Cloudera宣布新任大中华区副总裁Apr 09, 2024 pm 03:07 PM

中国北京,2024年4月9日——企业大数据和人工智能平台公司肯睿Cloudera今日宣布任命新任大中华区副总裁。此举旨在进一步聚焦客户成功及业务转型,并通过提供混合多云大数据和大模型能力,助力企业适应大数据和人工智能应用的发展,加速数字化转型进程。肯睿Cloudera现任命刘汨春先生为大中华区副总裁(RVP),他将负责推动肯睿Cloudera在中国的进一步拓展,并主导战略性销售、渠道发展和本地化策略方向。肯睿Cloudera大中华区副总裁刘汨春此次新任高管的任命进一步彰显了肯睿Cloudera致

PHP和swoole如何实现高效的数据缓存和存储?PHP和swoole如何实现高效的数据缓存和存储?Jul 23, 2023 pm 04:03 PM

PHP和swoole如何实现高效的数据缓存和存储?概述:在Web应用开发中,数据的缓存和存储是非常重要的一部分。而PHP和swoole提供了一种高效的方法来实现数据的缓存与存储。本文将介绍如何使用PHP和swoole来实现高效的数据缓存和存储,并给出相应的代码示例。一、swoole简介:swoole是一个针对PHP语言开发的,高性能的异步网络通信引擎,它可以

一文读懂人工智能表:从MindsDB说起一文读懂人工智能表:从MindsDB说起Apr 12, 2023 pm 12:04 PM

本文转载自微信公众号「活在信息时代」,作者活在信息时代。转载本文请联系活在信息时代公众号。对于熟悉数据库操作的同学来说,编写优美的SQL语句,从数据库中想方设法找出自己需要的数据,是常规操作了。而对于熟悉机器学习的同学来说,获取数据,对数据进行预处理,建立模型,确定训练集和测试集,用训练好的模型对未来进行一系列的预测,也是一种常规操作了。那么,我们能否将两种技术结合起来呢?我们看到数据库里存储了数据,而进行预测需要基于以往的数据。如果我们通过数据库里现有的数据,对于未来的数据进行查询的话,那么是

使用PHP数组实现数据缓存和存储的方法和技巧使用PHP数组实现数据缓存和存储的方法和技巧Jul 16, 2023 pm 02:33 PM

使用PHP数组实现数据缓存和存储的方法和技巧随着互联网的发展和数据量的急剧增长,数据缓存和存储成为了我们在开发过程中必须要考虑的问题之一。PHP作为一门广泛应用的编程语言,也提供了丰富的方法和技巧来实现数据缓存和存储。其中,使用PHP数组进行数据缓存和存储是一种简单而高效的方法。一、数据缓存数据缓存的目的是为了减少对数据库或其他外部数据源的访问次数,从而提高

威刚工控新一代高性能存储赋能AI时代威刚工控新一代高性能存储赋能AI时代Sep 22, 2023 pm 10:29 PM

9月19日,中国国际工业博览会的第二十三届正式开幕。本届工博会的主题是“碳循新工业、数聚新经济”,规模庞大,能级高,展品丰富,共有2800多家国内外展商参展。其中,威刚工控作为工业嵌入式存储领导品牌,围绕人工智能应用需求,重点展示了高性能存储解决方案,并展示了网络安全人工智能边缘计算设备、人工智能视觉控制器以及人工智能大数据分析设备的客户样机成功案例。通过展示有效解决人工智能场景中的难题和痛点的解决方案,为人工智能时代提供了新一代高性能存储技术的支持威刚展台的C位区域全面展示了各种主流规格的存储

PHP写入文件:实现数据输出和存储PHP写入文件:实现数据输出和存储Sep 06, 2023 am 09:19 AM

PHP写入文件:实现数据输出和存储在Web开发中,经常需要将数据写入到文件中进行存储或输出。PHP作为一门广泛应用于Web开发的脚本语言,提供了多种方法和函数来实现文件的写入操作。本文将介绍PHP中常用的几种写入文件的方法,并给出相应的代码示例。使用file_put_contents()函数file_put_contents()函数是PHP中最常用的文件写入

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),