Go語言實現FastDFS分布式儲存系統WebAPI Gateway

來源:互聯網
上載者:User

前言

  工作需要,第一次使用 Go 來實戰項目。

  需求:採用 golang 實現一個 webapi 的中轉網關,將一些資源檔通過 http 協議上傳至 FastDFS 分布式檔案儲存體系統。

 

一、FastDFS 與 golang 對接的代碼

  github:https://github.com/weilaihui/fdfs_client

  原始碼可以 clone 下來看看,go 文法很簡單

  基本使用:(client_test.go 中有 test 案例代碼)  

package mainimport (    "fmt"    "io/ioutil"    "github.com/weilaihui/fdfs_client")func main() {    ff, _ := ioutil.ReadFile("1.jpg")    fmt.Println("image len:", len(ff))    /*    hosts := []string{"10.0.1.32"}    port := 22122    minConns := 10    maxConns := 150    connPool,_ := fdfs_client.NewConnectionPool(hosts, port, minConns, maxConns)    */    path := "client.conf"    fds, error := fdfs_client.NewFdfsClient(path)    if fds == nil {        fmt.Println("conn error: %s", error)        var test string        fmt.Scanln(&test)        return    }    uploadResponse, err := fds.UploadByBuffer(ff, "jpg")    if uploadResponse == nil {        fmt.Println("upload error: %s", err)        var test string        fmt.Scanln(&test)        return    }    fmt.Println("group name:", uploadResponse.GroupName)    fmt.Println("remote file id:", uploadResponse.RemoteFileId)    var test string    fmt.Scanln(&test)}

 

二、簡單的 WebAPI Gateway

  beego 架構 go 圈很有名氣,國內大學著作,考慮到這次工程較小,暫未使用起來。

  go 實現一個 api 網關也是相當的簡單:

package mainimport (    "fmt"    "net/http"
     "io/ioutil"
)func main() {    http.HandleFunc("/", func(rw http.ResponseWriter, req *http.Request) {        rw.Write([]byte("Hello go web"))    })    http.HandleFunc("/upload", upload)    http.ListenAndServe("localhost:8888", nil)    fmt.Println("End.")}func upload(rw http.ResponseWriter, req *http.Request) {         fmt.Println("Header", req.Header)     fmt.Println("Content-Type", req.Header.Get("Content-Type"))     fmt.Println("Body", req.Body)
// 擷取 body 的全部內容
   /*
  len := req.ContentLength    body := make([]byte, len)    req.Body.Read(body)    rw.Write([]byte("Response Body ...."))
   */
    data, _ := ioutil.ReadAll(req.Body)
}

 

PS:以上代碼只是自己筆記使用,因為剛入手 go 不熟,僅供學習。

檔案上傳中轉,如果是較大的檔案,則採用將資料分區傳輸的方式進行。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.