Skip to content

Commit ab6be32

Browse files
committed
Added benchmark descriptions, fixed wrong maven coordinates
1 parent 4fb8672 commit ab6be32

File tree

1 file changed

+12
-3
lines changed

1 file changed

+12
-3
lines changed

README.adoc

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,24 @@
1-
= Netty 5.x Template Repository for Netty Contrib
1+
= Netty 5.x Codec Http Multipart Repository for Netty Contrib
22

33
* Netty core repository: https://github.com/netty/netty
44
* License: Apache-2.0 License
55
* Required Java version: Java 11
66
* Maven coordinates:
7-
** `io.netty.contrib:netty-template:5.0.0.Final-SNAPSHOT`
7+
** `io.netty5.contrib:netty-codec-multipart:5.0.0.Final-SNAPSHOT`
88
99
## Project description
1010

1111
This project is a porting of the Netty 4.1.78.Final Multipart codec to the new Netty 5.0.0-Alpha3 Buffer API.
1212

13+
## Running the benchmarks
14+
15+
```
16+
mvn clean install;
17+
cd benchmark;
18+
mvn clean package -P benchmark-jar
19+
java -jar target/microbenchmarks.jar
20+
```
21+
1322
## Running the server example
1423

1524
you can run the following http server example showing how to use the HTTP multipart package for file uploads and decoding post data:
@@ -24,4 +33,4 @@ And then run the http client example from another console:
2433
```
2534
cd examples
2635
mvn compile exec:java -Dexec.mainClass="io.netty.contrib.handler.codec.example.http.multipart.HttpUploadClient"
27-
```
36+
```

0 commit comments

Comments
 (0)