[go-nuts] Re: distributed runtime

2020-01-04 Thread Jason E. Aten
https://github.com/glycerine/goq Network communication costs much more than in-proc, so its better to parallelize with whole independent processes. -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop

Re: [go-nuts] Publishing and using go module from tarball?

2020-01-04 Thread wgr
On 2020-01-04 15:54, volf.to...@gmail.com wrote: > Greetings, > > I would like to ask if it is possible to publish go module using tarball and > later on somehow use it. All examples I was able are about using go modules > from some git repository. However, what I would like to do is publish >

Re: [go-nuts] Re: A question !

2020-01-04 Thread Prabhu Chawandi
Once you have little hands-on, https://medium.com/golangspec is a great place to read. On Sun, Jan 5, 2020 at 9:29 AM Michael Ellis wrote: > I came to Go from 10+ years of Python (and 20 years of C before that). Go > By Example was the online resource I found > most

[go-nuts] Re: A question !

2020-01-04 Thread Michael Ellis
I came to Go from 10+ years of Python (and 20 years of C before that). Go By Example was the online resource I found most useful in first few weeks of learning the language. I also highly recommend getting a copy of The Go Programming Language

Re: [go-nuts] A question !

2020-01-04 Thread robert engels
Well, don’t benchmark it, bookmark it :) > On Jan 4, 2020, at 5:51 PM, robert engels wrote: > > Please everyone just benchmark this page > https://www.techempower.com/benchmarks/ > > > Rant ON... Python is not suitable for any high volume server

Re: [go-nuts] A question !

2020-01-04 Thread robert engels
Please everyone just benchmark this page https://www.techempower.com/benchmarks/ Rant ON... Python is not suitable for any high volume server application. It is designed for simple scripting. Rant OFF. > On Jan 4, 2020, at 5:41 PM, Justin Israel

[go-nuts] Re: A question !

2020-01-04 Thread Justin Israel
On Sunday, January 5, 2020 at 7:28:24 AM UTC+13, Motaz Hejaze wrote: > > > 1 - Is there really a big performance ( speed ) difference between using > Python OR Golang in backend web development ? > There are a number of reasons why Go *could* out-perform Python when comparing django to a Go

[go-nuts] A question !

2020-01-04 Thread Motaz Hejaze
Hello Guyz , This is Hejaze from Egypt Currently i wok as a python django web developer I am new to Golang and i want to ask you guys with experience 1 - Is there really a big performance ( speed ) difference between using Python OR Golang in backend web development ? 2 - What is the fastest

[go-nuts] Publishing and using go module from tarball?

2020-01-04 Thread volf . tomas
Greetings, I would like to ask if it is possible to publish go module using tarball and later on somehow use it. All examples I was able are about using go modules from some git repository. However, what I would like to do is publish tarball same way as I would do for C projects (`make dist`)

[go-nuts] Re: os.RemoveAll of directory that contains long paths hangs

2020-01-04 Thread Jake Montgomery
FWIW, I was* unable to reproduce* this on Windows 7. Tried both a file and directory as the last part of the path. Otherwise, it was exactly as you specified. On Friday, January 3, 2020 at 12:50:22 PM UTC-5, Brian Samek wrote: > > I wanted to check here before I opened an issue. > > Given a

Re: [go-nuts] Enforcing a type name rather than a variable name

2020-01-04 Thread Jan Mercl
On Sat, Jan 4, 2020 at 12:28 AM wrote: > > Hello, > > Is there any way to avoid the compilation error "*error is not a type" of > this example https://play.golang.org/p/gWNStGSCfTm ? > I understand the variable named `error` hides the type named `error` but is > there some other syntax to