Diwash Mainalidiwashmainali.hashnode.dev·Sep 18, 2023AKKA Basic IntroductionYou can see about intro of AKKA on the below medium blog, I will focus on coding stuff.https://medium.com/techno101/introduction-to-akka-java-7d909456e6bd Setup Akka You should first import AKKA into your project to use it. To import add the below li...DiscussScala
Abhismanabhii85.hashnode.dev·Sep 17, 2023Understanding Concurrency in Go and building a Concurrent File DownloaderWhy build a Concurrent File Downloader? A file downloader is a simple application that allows you to download files over the Internet. Why bring concurrency into it? Let me tell you about the benefits: Concurrency allows multiple downloads to happen...Discuss·1 like·331 readsconcurrency
Nikhil AkkiPronikhilakki.in·Sep 16, 2023Python Async IO 101Intro Asyncio is a Python library that provides a framework for writing asynchronous, concurrent, and non-blocking code. It was introduced in Python 3.5 and has since become an essential tool for building efficient and responsive applications. At its...DiscussPython DevelopmentPython 3
Sumeet Ninaweletsdotech.hashnode.dev·Sep 10, 2023Mastering Concurrency ⚔️: A Dive into Go's Goroutines and ChannelsPhoto by Hannah Busing on Unsplash This is the first one in the series of Golang Themed articles. One of the most in-demand skills in the cloud-native community is the ability to write concurrent programs to leverage all the multi-core processor powe...Discuss·43 readsgolang
Milan Jovanovićmilanjovanovic.hashnode.dev·Sep 9, 2023Solving Race Conditions With EF Core Optimistic LockingHow often do you think about concurrency conflicts when writing code? You write the code for a new feature, confirm that it works, and call it a day. But one week later, you find out you introduced a nasty bug because you didn't think about concurren...Discuss·1 like·84 reads.NET
Bikram Sarkarbikram04.hashnode.dev·Sep 2, 2023Conquering Concurrency in Low-Latency SystemsIntroduction: In the world of high-frequency trading, real-time gaming, and critical financial systems, microseconds matter. These low-latency systems demand exceptional performance and precision. Here comes C++ to conquer latency and master concurre...Discuss·2 likesC++
Murtaza Ahmadmurtaza.top·Sep 2, 2023Go vs Python: A Performance Showdown for the Modern DeveloperIntroduction Go, developed at Google, and Python, a language that has been around since 1991, are both immensely popular among developers. However, when performance becomes a key requirement, the choice of language becomes critical. The performance o...Discuss·90 readsGoSprint: A 12-Week Golang MarathonGo Language
Aditya salunkheforAdiTechSavvys Blogs on Golangaditechsavvyblogs.hashnode.dev·Aug 29, 2023Goroutines : What makes them unique ?introduction to : parallelism and concurrency with a basic demonstration on goroutines and why exactly does golang follow a concurrent model as opposed to a parallel model. Some Pretext Concurrency is a fundamental concept in software development, al...Discuss·1 like·98 readsgolang
Arshadarshadmd.hashnode.dev·Aug 26, 2023Blogs + YouTube Videos for Mastering the Concurrency in GOHey Just writing this blog for the update of the "Mastering the concurrency in Go" Series. We have published: Full YouTube Playlist: https://www.youtube.com/playlist?list=PLPCpN15kbMlSyd6pR9qgwp7XUcu_3sgqk S1E1: Concurrency In Go | Goroutine | Chan...DiscussGo Language
Khue Quang Nguyenvuadivuacode.hashnode.dev·Aug 24, 2023Semaphore và semaphore package trong GolangChào các bác, Trong bài ngày hôm nay tôi sẽ giới thiệu với các bác sơ lược về khái niệm semaphore và package semaphore trong Golang. Semaphore là một khái niệm phổ biến trong đồng bộ tiến trình (process synchronization) nhưng ít khi được nhắc tới tro...Discuss·1 like·79 readssemaphore