Romman Sabbirrommansabbir.com·3 hours agoUnderstanding Kotlin Coroutine DispatchersIntroduction In this article, we will delve into the realm of Dispatchers in Kotlin Coroutines, exploring their significance in Android development and their role in efficiently managing threads for coroutine execution. As an essential topic for Andr...Discuss·44 readsKotlinAndroid
Tilson Mateustilsonmateus.com·Dec 4, 2023Fibers - PHPFibers é um novo recurso do PHP 8.1 que traz simultaneidade leve e controlada ao PHP. Provavelmente voce já leu essa frase em algum sitio, e assim como eu, voce não entendeu nada. Mas afinal, o que são Fibers? O que elas trazem de novo para o nosso ...Discuss·53 readsPHP Digging Deeper - Alem do Crudfiber-php
Kangarookangaroolove.hashnode.dev·Dec 3, 2023Qt threadIntroduce There are two ways to implement thread according to official documentation and the first one is recommended How to quit a thread correctly Inherit QObject workerThread.quit(); workerThread.wait(); Inherit QThread Thread::Thread() ...DiscussQtQt
Eduardo Andradeeduandrade.hashnode.dev·Nov 25, 2023Spring Framework Innovates by Adopting New Java FeaturesThe just-released Spring Boot 3.2.0 version arrives packed with optimizations that take advantage of the latest Java platform capabilities. By embracing key Java language enhancements, Spring's programming models gain more simplicity, flexibility, an...Discuss·31 readsJava
Vikas Taliyanvikas360.hashnode.dev·Nov 19, 2023NodeJs and ArchitectureLet's see how the NodeJs work. The flow of NodeJs starts with the client😎(who is a client I/me/you is the client). Here the client is req to the server🌎 and this server is running on nodeJs. Then the interesting game starts from here- When this re...DiscussNode.js
Prayag Bhattprayagbhatt.hashnode.dev·Nov 8, 2023Go Routines 🧵Contents What is Concurrency? Go Routines Critical Section, Mutex, and Wait Groups Channels Concurrency Imagine you're watching the Cricket World Cup 🏏 You're deeply engrossed in the game, and then the hunger strikes. So, you take a break to ...Discuss·7 likes·118 readsGoogle
prettyprintintfloatandwhatnot.hashnode.dev·Nov 5, 20231 2 3 of Threads in JavaWhat you will find here is the basics of Java threads so you do not want to procrastinate about threads and start using them. As always we start with what official documentation has to say about it, A thread is a thread of execution in a program. Th...Discuss1 2 3 of JavaJava
Sahil Maddicollaborativecoder4u.hashnode.dev·Oct 29, 2023Multithreading in JavaWhat is multithreading? Multithreading in Java allows a program to execute multiple threads concurrently, which can improve performance and responsiveness. Here's a simple explanation with examples: Creating Threads: You can create threads in Java ...Discussmultithreading
Aayush GuptaProaayushgupta.tech·Oct 17, 2023Beyond the Basics: A Deep Dive into the CAP Theorem with Java ThreadsI have Discussed this a lot of people during design discussions, taking Interviews and have often seen lot of confusion related to CAP Theorem, So thought of explaining the CAP theorem using Code, as a legend once said 'Talk is Cheap, show me the Cod...Discuss·81 readsDatabases Internals 💾System Architecture
Akash Devcoolcoderr.hashnode.dev·Oct 13, 2023Demystifying Java Threads for BeginnersToday, as I was reading about multi-threading and threads in Java, I came across numerous resources on the internet, which left me feeling overwhelmed. Therefore, I decided to write an article on the topic. This article is intended for beginners who ...DiscussJava