If I wanted to create a web service using Go, what web server would I be using?
My web service needs to interact with Mysql, redis and memcached. Are there stable libraries for each?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The net/http package in the standard library is stable and concurrent (goroutine per client).
After reading Writing Web Applications you will have the necessary skills to write idiomatic web applications in Go.