Async

Async
18
Nov 2019
Nov 18, 2019

Step by step guide for creating WebSocket client in Golang using mutex and channel

In this guide to using WebSockets in Golang I would like to concentrate on the following: the application should work whether WebSocket server is online or not. The server can be offline for a number of reasons: poor connection, server issues, etc, but a

Step by step guide for creating WebSocket client in Golang using mutex and channel
26
Mar 2018
Mar 26, 2018

Basic comparison between Python async and sync function

Async operation will really speed up your code for blocking I/O operations or networks requests. But it requires to work carefully with "event loop" and code might get complicated.

Basic comparison between Python async and sync function
13
Dec 2017
Dec 13, 2017

Django vs. Aiohttp Performance Test

Today I would like to take a trendy Python framework Django and compare it with a brand new framework aiohttp. I'm a Django fan and believe that Django is a really good framework, and I recommend to use it.

Django vs. Aiohttp Performance Test