https://github.com/khulnasoft-lab/fdmax
https://github.com/khulnasoft-lab/fdmax
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/khulnasoft-lab/fdmax
- Owner: khulnasoft-lab
- License: mit
- Created: 2023-07-22T09:31:27.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2024-08-04T18:18:41.000Z (10 months ago)
- Last Synced: 2025-02-11T17:23:28.557Z (3 months ago)
- Language: Go
- Size: 52.7 KB
- Stars: 0
- Watchers: 0
- Forks: 1
- Open Issues: 10
-
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 mainimport (
"fmt"_ "github.com/khulnasoft-lab/fdmax/autofdmax"
)func main() {
fmt.Println("test")
}
```