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

https://github.com/droxer/c10k-go

How to handle 100K Concurrence requests in Go
https://github.com/droxer/c10k-go

Last synced: 8 months ago
JSON representation

How to handle 100K Concurrence requests in Go

Awesome Lists containing this project

README

          

# C10K in Go

## Introduction

Demonstrates scalable techniques for handling 10,000 concurrent requests in Go

## Install dependencies

```
make install_dependencies
```

## Run Standard Server

This implementation uses the standard library's `net/http` package.
```
make run_server
```

## Run Fasthttp Server

This implementation uses the `fasthttp` package.
```
make run_fasthttp
```

## Run Gin Server

This implementation uses the `gin` package.
```
make run_gin
```

## Run Echo Server

This implementation uses the `echo` package.
```
make run_echo
```