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
- Host: GitHub
- URL: https://github.com/projectdiscovery/fdmax
- Owner: projectdiscovery
- License: mit
- Created: 2020-06-23T18:28:04.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-07-10T02:15:54.000Z (over 2 years ago)
- Last Synced: 2025-04-02T21:38:59.992Z (11 months ago)
- Topics: lib
- Language: Go
- Homepage:
- Size: 28.3 KB
- Stars: 23
- Watchers: 14
- Forks: 4
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
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")
}
```