Update README.md

Former-commit-id: 89f3054b8761e02b5de252588ab63d1cb7f9630c
This commit is contained in:
Gerasimos (Makis) Maropoulos 2017-02-17 09:45:17 +02:00
parent 8c147d9d26
commit 303650782c

View File

@ -49,15 +49,15 @@ I made two very simple identical applications, the first written with a famous m
I ran `go build` for both of them,
- the first had `9.029 KB` overall file size,
- the second had `8.505 KB` overall file size!
- net/http` had produced an executable file with `5.380 KB` size
- _gin_ had `9.029 KB` overall file size,
- _iris_ had `8.505 KB` overall file size!
- _net/http_ had produced an executable file with `5.380 KB` size.
> The app didn't used any third-party library. If you test the same thing I test and adapt other features like sessions and websockets then the size of `gin` and `net/http` could be doubled while `iris`' overall file size will remain almost the same.
**Applications that are written using Iris have smaller file sizes** than a single router library!
**Applications that are written using Iris produce smaller file size even if they use more features** than a simple router library!
> Q: How is that possible?