From 303650782cbf23bb280f7572c3398df7c9eba0d9 Mon Sep 17 00:00:00 2001 From: "Gerasimos (Makis) Maropoulos" Date: Fri, 17 Feb 2017 09:45:17 +0200 Subject: [PATCH] Update README.md Former-commit-id: 89f3054b8761e02b5de252588ab63d1cb7f9630c --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index d69ab16a..7394e9de 100644 --- a/README.md +++ b/README.md @@ -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?