Giter VIP home page Giter VIP logo

Comments (5)

elithrar avatar elithrar commented on July 17, 2024

gorilla/mux does not implement a graceful shutdown, but you can leverage other packages that are compatible with http.Handler. The graceful package included with the Goji framework is easy to bolt on:

package main

import ( 
    "net/http"
    "github.com/gorilla/mux"
    "github.com/zenazn/goji/graceful"
)

func main() {
    r := mux.NewRouter()
    r.HandleFunc("/", SomeHandler)

    graceful.ListenAndServe(":8000", r)
}

func SomeHandler(w http.ResponseWriter, r *http.Request) {
    w.Write([]byte("Hello\n"))
}

from mux.

azr avatar azr commented on July 17, 2024

Okay, awesome, thanks for your answer :)

from mux.

azr avatar azr commented on July 17, 2024

Hem another question, I like more gorilla.mux, but goji seems nice for a web app !
So, would it be possible to use Goji's middlewares and everything but still be using gorilla.mux ?

from mux.

elithrar avatar elithrar commented on July 17, 2024

You can't use any Goji-specific middleware—that is, anything with the
signature of func(web.C, http.Handler) http.Handler - because the request
context (web.C; that allows you to pass data between middleware) is tied to
the Goji router by necessity.

You can use any generic middleware that has the signature
func(http.Handler) http.Handler - some of Goji's middleware does match
this. An example is the Basic Auth middleware I wrote at
https://github.com/goji/httpauth - this will work with gorilla/mux.

On Tuesday, July 1, 2014, Adrien Delorme [email protected] wrote:

Hem another question, I like more gorilla.mux, but goji seems nice for a
web app !
So, would it be possible to use Goji's middlewares and everything but
still be using gorilla.mux ?


Reply to this email directly or view it on GitHub
#61 (comment).

from mux.

azr avatar azr commented on July 17, 2024

Okay then, I changed my mind. I think I'm totally going to use goji now, even if I can't name my routes, too bad it doesn't have some magick JSON/XML/Whatsoever parser/generator like gin-gonic.

I guess I can make a JSON/XML middleware that will automatically detect type of sent stuff and parse it as http parameters.

Thanks for your time :)

PS: is it common to be go a developer and alcoholic ? 😆

from mux.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.