golang JSON webservice - nginx load balance

func main() {
    http.HandleFunc("/api", apiHandler)
    http.HandleFunc("/query/main", mainHandler)
    http.HandleFunc("/query/show", showHandler)
    http.HandleFunc("/", mainHandler)
    http.ListenAndServe(":8081", nil) }

API 和网页 按不同的url处理

 

用go-curl调用底层service

func callCurl(postData string) (result string, err error) {
    easy := curl.EasyInit()
    defer easy.Cleanup()
    easy.Setopt(curl.OPT_URL, "http://localhost:8540")
    easy.Setopt(curl.OPT_POST, true)
    easy.Setopt(curl.OPT_VERBOSE, true)
    easy.Setopt(curl.OPT_HTTPHEADER, []string{"Content-Type: application/json"})
    easy.Setopt(curl.OPT_POSTFIELDSIZE, len(postData))
    easy.Setopt(curl.OPT_READFUNCTION, func(ptr []byte, _ interface{}) int {
        return copy(ptr, postData)
    })
    easy.Setopt(curl.OPT_WRITEFUNCTION, func(buf []byte, _ interface{}) bool {
        result = string(buf)
        return true
    })
    if err := easy.Perform(); err != nil {
        return "", err
    }
    return result, nil
}

 

json.Marshal/Unmarshal 把json字符串转 go struct

https://gobyexample.com/json

 

http.Template 来写 web页面

https://golang.google.cn/doc/articles/wiki/

 

格式化一下 json到网页:

https://github.com/tidwall/pretty

opt := &pretty.Options{Width: 80, Prefix: "<br>", Indent: "&nbsp;&nbsp;&nbsp;&nbsp;", SortKeys: false}
result = string(pretty.PrettyOptions([]byte(result), opt)

防止 html escape

http://blog.xiayf.cn/2013/11/01/unescape-html-in-golang-html_template/

用 template.HTML类 封装。

 

用nginx做load balance:

First configure /etc/nginx/nginx.conf:

worker_processes  5;
worker_rlimit_nofile 8192;
events {
  worker_connections  4096;
}
http {
    upstream myapp1 {
        server server1:8081;
        server server2:8081;
    }
    server {
        listen 8080;
        location / {
            proxy_pass http://myapp1;
        }
    }
}

Start nginx via `nginx`

Try it in browser via nginx URL: `http://nginx-server:8080`

转载于:https://www.cnblogs.com/brayden/p/8427372.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值