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

https://github.com/pigogo/netgo

netgo is base on epoll syscall networking framework
https://github.com/pigogo/netgo

epoll-tcp-server golang network

Last synced: 5 months ago
JSON representation

netgo is base on epoll syscall networking framework

Awesome Lists containing this project

README

          

`netgo` is an fast and small epoll event loop networking framework. It direct use syscalls rather than using the standard Go [net](https://golang.org/pkg/net/) package, and easy to use.

## Features

- Linux only
- Tcp only
- Simple API
- Low memory usage
- Socket option

## Getting Started

### Installing

To start using netgo, install Go and run `go get`:

```sh
$ go get -u github.com/pigogo/netgo
```

This will retrieve the library.