a13d02069e
git-subtree-dir: packages/body_parser git-subtree-mainline:9c36a7e981
git-subtree-split:b4cc359637
41 lines
1.1 KiB
Dart
41 lines
1.1 KiB
Dart
import 'dart:async';
|
|
import 'dart:convert';
|
|
import 'dart:io';
|
|
import 'dart:isolate';
|
|
import 'package:body_parser/body_parser.dart';
|
|
|
|
main() async {
|
|
var address = '127.0.0.1';
|
|
var port = 3000;
|
|
var futures = <Future>[];
|
|
|
|
for (int i = 1; i < Platform.numberOfProcessors; i++) {
|
|
futures.add(Isolate.spawn(start, [address, port, i]));
|
|
}
|
|
|
|
Future.wait(futures).then((_) {
|
|
print('All instances started.');
|
|
print(
|
|
'Test with "wrk -t12 -c400 -d30s -s ./example/post.lua http://localhost:3000" or similar');
|
|
start([address, port, 0]);
|
|
});
|
|
}
|
|
|
|
void start(List args) {
|
|
var address = new InternetAddress(args[0] as String);
|
|
int port = args[1], id = args[2];
|
|
|
|
HttpServer.bind(address, port, shared: true).then((server) {
|
|
server.listen((request) async {
|
|
// ignore: deprecated_member_use
|
|
var body = await parseBody(request);
|
|
request.response
|
|
..headers.contentType = new ContentType('application', 'json')
|
|
..write(json.encode(body.body))
|
|
..close();
|
|
});
|
|
|
|
print(
|
|
'Server #$id listening at http://${server.address.address}:${server.port}');
|
|
});
|
|
}
|