Head First Golang

  • Head first Golang.
  • Here is the basic of go-language, including grammer basic and some features.
  • The content is based on the tutorial A tour of Go and I will present my understanding.
  • Furthermore, I will try to anaylyze the priciple
阅读全文 »

S3FS

  • FUSE-based file system backed by Amazon S3
  • 基于对象存储的文件系统,国内有 aliyun/ossfs, huaweicloud/obsfs
  • 本质是实现了将对象存储的 Bucket 挂载到了本地文件系统中,从而通过本地文件系统操作 OSS 上的对象
阅读全文 »

C++基础快速入门

  • 项目开发需要使用 C++,曾经学过相关课程,但很久没与使用,有些遗忘。
  • 此处将和自己比较擅长的 Java 语言其中的概念进行类比,加深理解。
  • 记录重要笔记,主要是C++ 一些独有的概念和一些基础知识
  • 前半部分是 C 和 C++ 共通的部分,后半部分为面向对象的相关特性。
阅读全文 »

Minio

  • 开源支持 S3 协议的对象存储
  • 支持多个客户端访问,支持分布式集群部署,容器化部署
  • 考虑集成在项目中,作为后端存储进行测试
阅读全文 »