"It’s gonna work good on all devices." Don't they mean work well?
Iris: Fast back-end web framework for Go
11–20 of 125 posts
Re: Iris: Fast back-end web framework for Go
#12Not only is this page riddled with typos that lead me to doubt the quality of the code, the concept of a framework is fundamentally complex and at odds with the goals of Go.
Re: Iris: Fast back-end web framework for Go
#13Features: https://kataras.gitbooks.io/iris/content/features.html (seems to be missing a data/SQL/ORM layer) Usage docs for rest api: https://kataras.gitbooks.io/iris/content/render_rest.html#us...
[2] https://github.com/gocraft/dbr
Re: Iris: Fast back-end web framework for Go
#14Not only is this page riddled with typos that lead me to doubt the quality of the code, the concept of a framework is fundamentally complex and at odds with the goals of Go.
Because being a native english speaker has a lot to do with the quality of code, how rude..
Re: Iris: Fast back-end web framework for Go
#15Re: Iris: Fast back-end web framework for Go
#16Not only is this page riddled with typos that lead me to doubt the quality of the code, the concept of a framework is fundamentally complex and at odds with the goals of Go.
Because being a native english speaker has a lot to do with the quality of code, how rude..
Re: Iris: Fast back-end web framework for Go
#17Earlier quoted context omitted.
Because being a native english speaker has a lot to do with the quality of code, how rude..
Typos are easily checked by dictionary - no need to be native speaker for that :)
Re: Iris: Fast back-end web framework for Go
#18The performance comes from using https://github.com/valyala/fasthttp instead of the stdlib net/http. From this project's FAQ: >Why creating yet another http package instead of optimizing net/http? Because net/http API limits many optimization opportunities.
What I think could work is a pure in memory database with server combination. Something like redis for websites.
Re: Iris: Fast back-end web framework for Go
#19Features: https://kataras.gitbooks.io/iris/content/features.html (seems to be missing a data/SQL/ORM layer) Usage docs for rest api: https://kataras.gitbooks.io/iris/content/render_rest.html#us...
Not including an ORM layer does not decrease "value" of this framework, because you can attach such lib on your own. In Go the you are very flexible to set up a "a place where data will be stored/queried" - there is fabulous database/sql (or additional layers like lib/pq [1]) which is great for many use cases; also orm-like solutions like gocraft/dbr [2]; oh, I also should mention Gorm [3] or Bolt [4]. Setting them u…
Given that interacting with a database is at least as common a webdev task as, say, i18n, I thought it was worth noting that this framework does not have a db solution of choice.
Re: Iris: Fast back-end web framework for Go
#20Earlier quoted context omitted.
Because being a native english speaker has a lot to do with the quality of code, how rude..
English is a language with grammar that has a Stack Exchange site and can be Googled. The typos on the page are common for native English speakers who don't take the time or effort to check their writing for correctness. The author did not grow up from babyhood writing Go programs, but we expect them to be correct and adhere to known idioms.