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

https://github.com/plugfox/dart-http-server-benchmark

Dart HTTP Server Benchmark
https://github.com/plugfox/dart-http-server-benchmark

Last synced: about 1 year ago
JSON representation

Dart HTTP Server Benchmark

Awesome Lists containing this project

README

          

# Dart Server Benchmark

## Compile and run the server

```bash
cd server
dart pub get
mkdir -p build
dart compile exe bin/main.dart -o build/server
./build/server --address=127.0.0.1 --port=8080 --isolates=24 --verbose=2 --environment=local
```

## Compile and run the client

```bash
cd client
dart pub get
mkdir -p build
dart compile exe bin/main.dart -o build/client
./build/client --address=127.0.0.1 --port=8080 --isolates=24 --count=10000
```