Andrey Semochkin

Results 92 comments of Andrey Semochkin

[pack.zip](https://github.com/nats-io/nats.go/files/3603222/pack.zip)

Thank you very much for the prompt and quality support.

Is this function not nc.Publish blocking? Do I have to get the result so much different in time? The only question is this. 200000 demo.nats.io > 2019/09/12 03:52:23 962.422377ms >...

> Publish() is async. There is no guarantee of anything happening after you call Publish. Also you should check the error returned by Publish. There is a maximum payload for...

I test now I want to send a large number of big messages without blocking. Considering that my messages are very large, I think I realized that the point is...

Thank you, I will investigate this in detail. Publish() always be async - this is exactly what I wanted to achieve It would be cool if there was a sending...

I understand that we are talking about transmission over the network and also understand the differences between asynс and no blocking Non-blocking sending is what I need. my problem if...

this method redirect http to https I need pure :80 and https ;(

thx I run it ``` m := &autocert.Manager{ Prompt: autocert.AcceptTOS, HostPolicy: autocert.HostWhitelist(panel.Config.Web.DomainNames[0:]...), } dir := cacheDir() fmt.Println("Using cache: ", dir) if err := os.MkdirAll(dir, 0700); err != nil { log.Printf("warning:...