http

package
v0.30.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: May 2, 2022 License: Apache-2.0 Imports: 12 Imported by: 103

Documentation

Overview

Package http implements crazy ideas for http optimizations that should be mostly std compatible.

Index

Constants

This section is empty.

Variables

View Source
var ErrNotImplemented = errors.New("not implemented")

ErrNotImplemented reports that handler is not implemented.

Functions

func AcquireRequest

func AcquireRequest() *http.Request

AcquireRequest returns new *http.Request from pool.

func NewRequest

func NewRequest(ctx context.Context, method string, u *url.URL, body io.Reader) *http.Request

NewRequest is optimized version of http.NewRequestWithContext.

func PutRequest

func PutRequest(r *http.Request)

PutRequest resets *http.Request and puts to pool.

func Set

func Set(req *http.Request, ctx context.Context)

Set sets request context without shallow copy of request.

func SetValue

func SetValue(req *http.Request, k, v interface{})

SetValue wraps context.WithValue call on request context.

Types

type Client

type Client interface {
	Do(r *http.Request) (*http.Response, error)
}

Client represents http client.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL