forker

package module
v1.0.0 Latest Latest
Warning

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

Go to latest
Published: Oct 7, 2022 License: Apache-2.0 Imports: 9 Imported by: 1

README

forker

Get high performance http requests with fork process

OHA benchmark forker

alt text

Summary:
  Success rate:	1.0000
  Total:	24.4907 secs
  Slowest:	0.5000 secs
  Fastest:	0.0004 secs
  Average:	0.0610 secs
  Requests/sec:	8166.3762

  Total data:	2.10 MiB
  Size/request:	11 B
  Size/sec:	87.72 KiB

Response time histogram:
  0.000 [1]     |
  0.050 [82408] |■■■■■■■■■■■■■■■■■■■■■■■■■■
  0.100 [98705] |■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
  0.150 [16180] |■■■■■
  0.200 [2245]  |
  0.250 [361]   |
  0.300 [59]    |
  0.350 [33]    |
  0.400 [3]     |
  0.450 [1]     |
  0.500 [4]     |

Latency distribution:
  10% in 0.0291 secs
  25% in 0.0404 secs
  50% in 0.0557 secs
  75% in 0.0754 secs
  90% in 0.0989 secs
  95% in 0.1170 secs
  99% in 0.1581 secs

Details (average, fastest, slowest):
  DNS+dialup:	0.0259 secs, 0.0001 secs, 0.3010 secs
  DNS-lookup:	0.0000 secs, 0.0000 secs, 0.0239 secs

Example

package main

import (
	"github.com/Ja7ad/forker"
	"log"
	"net/http"
)

func main() {
	srv := &http.Server{
		Handler: GreetingHandler(),
	}

	f := forker.New(srv)

	log.Fatalln(f.ListenAndServe(":8080"))

}

func GreetingHandler() http.HandlerFunc {
	return func(w http.ResponseWriter, r *http.Request) {
		w.Write([]byte("greeting!!!"))
	}
}

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	ErrReuseportOnWindows = errors.New("please enable reuseport for windows")
	ErrOverRecovery       = errors.New("exceeding recovery child of forker")
)

Functions

This section is empty.

Types

type Fork

type Fork struct {
	Network   Network // Network is net type tcp4, tcp, tcp6, udp, udp4, udp6
	ReusePort bool    // ReusePort use for windows support child process base on system call
	// contains filtered or unexported fields
}

func (*Fork) ChildPids

func (f *Fork) ChildPids() []int

ChildPids list child process PID

func (*Fork) ListenAndServe

func (f *Fork) ListenAndServe(address string) error

ListenAndServe listen and serve http server

func (*Fork) ListenAndServeTLS

func (f *Fork) ListenAndServeTLS(address, certFile, keyFile string) error

ListenAndServeTLS listen and serve http server with tls support

func (*Fork) NumOfChild

func (f *Fork) NumOfChild() int

NumOfChild number of child process

type Forker

type Forker interface {
	ListenAndServe(address string) error
	ListenAndServeTLS(address, certFile, keyFile string) error
	NumOfChild() int
	ChildPids() []int
	// contains filtered or unexported methods
}

func New

func New(httpServer *http.Server, opts ...Option) Forker

New create forker for listen and serve http server

type Network

type Network int
const (
	TCP4 Network = iota + 1
	TCP6
	UDP
	UDP4
	UDP6
)

func (Network) String

func (i Network) String() string

type Option

type Option func(f *Fork)

func WithCustomNetwork

func WithCustomNetwork(network Network) Option

WithCustomNetwork set network type listing type

func WithReusePort

func WithReusePort(reusePort bool) Option

WithReusePort enable reuse port option for windows

Directories

Path Synopsis

Jump to

Keyboard shortcuts

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