Hertz 学习笔记(23)

160 阅读1分钟

今天学客户端配置

配置 hertz 客户端的示例

/*
 * Copyright 2022 CloudWeGo Authors
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package main

import (
	"context"
	"fmt"
	"time"

	"github.com/cloudwego/hertz/pkg/app/client"
	"github.com/cloudwego/hertz/pkg/network/standard"
)

func main() {
	c, err := client.NewClient(
		client.WithDialTimeout(1*time.Second),
		client.WithDialer(standard.NewDialer()),
		client.WithKeepAlive(true),
	)
	if err != nil {
		return
	}

	status, body, _ := c.Get(context.Background(), nil, "http://www.example.com")
	fmt.Printf("status=%v body=%v\n", status, string(body))
}

这个例子里面用到了三个配置,第一个配置设置超时时间,默认 1 秒,第二个设置 client 使用的网络库,默认 netpoll,第三个设置是否使用长连接,默认开启。

要运行还是单文件运行然后访问请求对应的地址即可。因为这个例子里面用到的配置都和默认配置一样,所以光看结果感觉不到什么区别。