https://github.com/evincarofautumn/simpleserver
Simple server/client threadpool benchmark.
https://github.com/evincarofautumn/simpleserver
Last synced: 3 months ago
JSON representation
Simple server/client threadpool benchmark.
- Host: GitHub
- URL: https://github.com/evincarofautumn/simpleserver
- Owner: evincarofautumn
- Created: 2016-05-31T20:46:00.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-05-31T22:00:22.000Z (over 9 years ago)
- Last Synced: 2025-03-24T07:56:04.523Z (7 months ago)
- Language: C#
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Simple Server
This is a server/client benchmark designed to test threadpool performance.
## Starting the Server
```
mono Server.exe 100 &
```Starts a server that will accept 100 connections before shutting down.
## Starting the Clients
```
mono Client.exe
```Starts a client that will connect to the server, exchange ten thousand
half-kilobyte request-response pairs, then send an EOT to terminate the
connection.