Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add gClient ExampleNew function #1823

Merged
merged 9 commits into from
May 13, 2022
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