Categorygithub.com/khulnasoft-lab/fdmax
repositorypackage
0.0.7
Repository: https://github.com/khulnasoft-lab/fdmax.git
Documentation: pkg.go.dev

# Packages

No description provided by the author
No description provided by the author

# README

fdmax

Small Helper library that increases automatically the maximum number of file descriptors for the current go program. It can be simply imported as follows:

package main

import (
	"fmt"

	_ "github.com/khulnasoft-lab/fdmax/autofdmax"
)

func main() {
	fmt.Println("test")
}