PicBed & OSS
PicGo介绍¶
这是一款图片上传的工具,目前支持微博图床,七牛图床,腾讯云,又拍云,GitHub等图床,未来将支持更多图床。
所以解决问题的思路就是,将本地的文件,或者剪切板上面的截图发送图床,然后生成在线图片的链接,走到哪就可以用到哪。
Cloudflare R2 Storage¶
对象存储有时也称为 Blob 存储,可以存储任意的大型非结构化文件。我们常用的有 AWS 的 S3、阿里云的 OSS、腾讯云的 COS、华为云的 OBS,都是对象存储,他们都可以为我们提供延迟一致、持久性高和容量无限的服务,免去了我们本地文件系统的共享、备份等痛点。
最为经典的是 AWS 的 S3(Simple Storage Service),刚刚推出的时候是革命性的服务,但也带来了新的痛点,上传、存储的费用还可以,但下载也就是取回的时候会被收取流量费,这个费用随着时间的推移,存储的文件越来越多,流量费也变得越来越高。
2022年 5月 Cloudflare 就为我们带来了 R2 Storage,基于带宽联盟,为存储对象提供更低成本的存储服务。在后台,R2 自动智能管理数据分层,以在峰值负载时提高性能,并为不经常请求的对象降低成本。
R2 的革命性
在上面我们了解了 Cloudflare R2 Storage 收费项目,发现了什么?只收取存储费用、操作费用,没有流量费用!是的没有流量费用,这就是 Cloudflare R2 Storage 的革命性,依托带宽联盟,做到了零出口费用!5
picbed / OSS compare¶
- github图床,国内连不上
-
(推荐)七牛申请了免费的证书证书,由于是海外访问还是慢。
-
one drive虽然能用也能访问,但是速度慢而且操作麻烦,只能一个个传。而且会失效
- OSS charge but easy-to-use.
Pricing¶
Name | Storage | request operations | newwork flow |
---|---|---|---|
Cloudflare R2 | 10GB/monthfree+$0.015/add-GB/month | 1Moperations/monthfree+ $4.50 per additional million operations(2) | not charge5 |
Aliyun OSS 4 | 0.12元/GB/月(1) | 0.01元/万次 | 0.50元/GB |
- (6GB内不要买套餐,最低配一年9元40GB)
- B 类操作费用:每个月一千万次免费额度,超出后每百万次收取 $0.36 的操作费用
reads per object is Class B operations
- Class A operations which are more expensive and tend to mutate state.
- Class B operations which tend to read existing state.6
Current picbed usage¶
timestamp | storgy | Network flow(per month) | request operations |
---|---|---|---|
Aliyun 231031 | 395.13MB | 21.41GB | 61,490 |
Cloudflare 231124 | 490MB | xxx | 9.11k |
I need to pay 10RMB each month and the fee grows fast
My choice¶
- First I am not a cross-platform blog writer(1). So If i have a sever machine, i can save my pic in it and no need for picbed
- But I use cloudflare + github solution, It will face 3 potential problem
- pic set touch the github repository storagy size limits (maybe no limits just recommend less than 5GB2)
- cloudflare pages will clone the whole pic-repo after each git push leading to long blog building latency(2)
- And the cloudflare pages maybe have a static webfile limits 25MB.3
-
So I still recommand to use OSS rather than other tricks like using github.
-
I use blog as my brain cache
- cloudflare pages Builds will timeout after 20 minutes.
Old阿里云图床配置¶
Please read 1