The Go networking library includes the http.ServeMux
structure type, which supports HTTP request multiplexing (routing): A web server routes an HTTP request for a hosted resource, with a URI such as /sales4today, to a code handler; the handler performs the appropriate logic before sending an HTTP response, typically an HTML page. Here’s a sketch of the architecture:
read more
Author: mkalin@depaul.edu
Published at: Tue, 14 Aug 2018 03:02:00 -0400
Credits: https://www.opensource.com
No comments:
Post a Comment