Skip to content

Commit

Permalink
Merge pull request gogf#1823 from huangqian1985/master
Browse files Browse the repository at this point in the history
add gClient ExampleNew function
  • Loading branch information
gqcn authored May 13, 2022
2 parents 31bc30b + f82f53f commit e4edbe2
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 2 deletions.
3 changes: 1 addition & 2 deletions net/gclient/gclient_response.go
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,8 @@ func (r *Response) ReadAllString() string {

// Close closes the response when it will never be used.
func (r *Response) Close() error {
if r == nil || r.Response == nil || r.Response.Close {
if r == nil || r.Response == nil {
return nil
}
r.Response.Close = true
return r.Response.Body.Close()
}
46 changes: 46 additions & 0 deletions net/gclient/gclient_z_example_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ package gclient_test
import (
"context"
"fmt"
"github.com/gogf/gf/v2/net/gclient"
"github.com/gogf/gf/v2/os/gctx"
"net/http"
"time"

"github.com/gogf/gf/v2/frame/g"
Expand Down Expand Up @@ -98,6 +101,49 @@ func init() {
time.Sleep(time.Millisecond * 500)
}

func ExampleNew() {
var (
ctx = gctx.New()
client = gclient.New()
)

if r, err := client.Get(ctx, "http://127.0.0.1:8999/var/json"); err != nil {
panic(err)
} else {
defer r.Close()
fmt.Println(r.ReadAllString())
}

// Output:
// {"id":1,"name":"john"}
}

func ExampleNew_MultiConn_Recommend() {
var (
ctx = gctx.New()
client = g.Client()
)

// controls the maximum idle(keep-alive) connections to keep per-host
client.Transport.(*http.Transport).MaxIdleConnsPerHost = 5

for i := 0; i < 5; i++ {
if r, err := client.Get(ctx, "http://127.0.0.1:8999/var/json"); err != nil {
panic(err)
} else {
fmt.Println(r.ReadAllString())
r.Close()
}
}

// Output:
//{"id":1,"name":"john"}
//{"id":1,"name":"john"}
//{"id":1,"name":"john"}
//{"id":1,"name":"john"}
//{"id":1,"name":"john"}
}

func ExampleClient_Header() {
var (
url = "http://127.0.0.1:8999/header"
Expand Down

0 comments on commit e4edbe2

Please sign in to comment.