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

https://github.com/projectdiscovery/fdmax

Small Helper Library to increase automatically the file descriptors limits for the current process
https://github.com/projectdiscovery/fdmax

lib

Last synced: 10 months ago
JSON representation

Small Helper Library to increase automatically the file descriptors limits for the current process

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/projectdiscovery/fdmax/autofdmax"
)

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