Hi!

There is a fundamental thing you got to grok in Go, which is that the
program is concurrent. If you have many requests to your server at the same
time, they'll all try to write to your global `data`. This is called a data
race, and it leads to all kinds of undefined behavior. You are not even
guaranteed to see a value someone sent, but something entirely different
(random garbling of data). Go comes equipped with a race detector you can
use to find data races in your program.

You will have to handle the race in some way. One tactic is to create a
channel for your data. Then you send a message on that channel with your
data, and you can read from the channel in the other part of your
application.

* It avoids the data race
* If requests come in at the same time, they are queued on the channel, so
you can handle them all
* If you buffer the channel, you can absorb short-term spikes in requests



On Mon, Jun 10, 2019 at 12:51 PM <afriyie.abra...@gmail.com> wrote:

> I have this simple http server. How can i access the request data to a
> global variable and use it in any other part of my application (example in
> different function).
>
>
> package main
> import (
>     "io"
>     "net/http")
> var data string // Get http request URL data globally and use it in other 
> part of the  application
>
> func hello(w http.ResponseWriter, r *http.Request) {
>     data := r.URL.Query().Get("somestring")}
>
> func main() {
>     mux := http.NewServeMux()
>     mux.HandleFunc("/", hello)
>
>     http.ListenAndServe(":8000", mux)}
>
> --
> You received this message because you are subscribed to the Google Groups
> "golang-nuts" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to golang-nuts+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/golang-nuts/55a6f94c-787e-476e-96f5-d3c440f6f024%40googlegroups.com
> <https://groups.google.com/d/msgid/golang-nuts/55a6f94c-787e-476e-96f5-d3c440f6f024%40googlegroups.com?utm_medium=email&utm_source=footer>
> .
> For more options, visit https://groups.google.com/d/optout.
>


-- 
J.

-- 
You received this message because you are subscribed to the Google Groups 
"golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to golang-nuts+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/golang-nuts/CAGrdgiUY%2ByLdhROqJaXWveQnk9k1cVF3dXFkPJ7cXmjv41wH0A%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to