Marko Roganovic
Marko Roganovic
Hi @erikdubbelboer if I may also give my opinion on what examples would be useful. I've lately started working at low latency, high throughput projects, started with Node.js, but quickly...
Hi @9mm, I'm right now making 700 million outgoing requests per day, but I need to scale it to 3 billion, I can probably do it with throwing more servers...
Probably to people who have computer science background this is common sense, but for me it was hard in the beginning, and only broaden my research skills to operating system...
Currently, I'm using `net/http` with transport client that looks like this. ```go func initClient() { tr := &http.Transport{ MaxIdleConns: 1024, MaxIdleConnsPerHost: 1024, TLSHandshakeTimeout: 10 * time.Second, Dial: (&net.Dialer{ Timeout: 75...
Without wasting resources.
Thank you @dgrr , I'll keep investigating, and testing. Can you maybe recommend me some resources to learn more about this?
@9mm yes, I do, also I've read every comment on Elixir forum, really great thread, a lot of useful info, I've started to learn Elixir just before Go, and it...
Wow @erikdubbelboer thank you very much! I'll investigate every line of code, to be honest it contains a lot of things which are foreign to me yet.
@tokers Hey, thanks for replying. Basically, I need to do next: 1. Connect domain to some VPS 2. On that domain setup OpenResty configs 3. Once someone hits those domains...
@tokers Hi, any opinion on this?