An open API service indexing awesome lists of open source software.

https://github.com/khulnasoft-lab/fdmax


https://github.com/khulnasoft-lab/fdmax

Last synced: about 2 months ago
JSON representation

Awesome Lists containing this project

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")
}
```