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
Abhishek Tanwartanwar-abhishek.hashnode.dev路Sep 16, 2023Singleton Design Pattern聽: Naive and Thread聽safeThe one and only one design pattern, there can only be one! Singleton is a design pattern that鈥檚 quite popular and easy to implement in a naive approach for a single-threaded (single sequence) application. Since it requires a global variable, writin...Discuss路37 readsProgramming Blogs
Praise Idowutechstars.hashnode.dev路Sep 8, 2023How to build Asynchronous applications in Python: Exploring MultithreadingThe concept of multithreading is often confusing to beginners. This is because of the new concepts that come with learning it and the complexity of writing a threaded function/application. Some people may argue that multithreading is bad while others...Discussasynchronous
Hemant Singhmemorycrypt.hashnode.dev路Aug 21, 2023Mastering Multithreading in .NET: Exploring Concurrent Programming with C#Multithreading is a fundamental concept in modern software development, enabling applications to efficiently perform multiple tasks simultaneously and make the most of available hardware resources. In the .NET framework, multithreading is a crucial t...Discuss路1 like路57 readsC# and .NETmultithreading
Md Mubeen Ali Zakimubeenzaki.hashnode.dev路Aug 17, 2023Multithreading in Python | Threads & Process | Dead-Lock & Race Condition | Lock VariableProcesses and Threads: A 'Process' is a program in execution, whereas a 'Thread' is a separate execution path in a 'Process'. A 'Thread' can be called as a 'Light-Weight Process' as all the threads within the process share the same computing resource...Discussmultithreading
Bezaleel Nwabiabezaleelnwabia.hashnode.dev路Aug 16, 2023Unlocking the Power of Parallelism: Demystifying Multithreading in Modern Software Development1. PREREQUISITES Before delving into the comprehensive article on multithreading in modern software development, it's essential to have a solid foundation in certain programming concepts and languages, particularly Python and JavaScript. Familiarity ...Discuss路10 likes路85 readsBackend EngineeringNode.js
Claudclaudbytes.hashnode.dev路Aug 16, 2023Harnessing Concurrency with GoroutinesIntroduction In the dynamic realm of modern programming, where speed and efficiency are paramount, the concept of multi-threading finds a robust implementation in the Go programming language, where multi-threading is realized through goroutines, offe...Discuss路44 readsLearning Go 馃殌Go Language
Hemant Besracodeinjava.hashnode.dev路Aug 15, 2023Different Executor Services in Java for Efficient MultithreadingIn our earlier blog post, we explained the concept of a thread pool, its significance, and how the ExecutorService framework assists in its implementation. This blog serves as a continuation of our previous discussion. If you haven't read the precedi...DiscussMultithreading in javaJava Concurrency
Hemant Besracodeinjava.hashnode.dev路Aug 15, 2023A Comprehensive Guide to Thread Pools in JavaIn the world of concurrent programming, managing threads efficiently is a challenge that developers often face. Threads are essential for executing tasks concurrently, but creating and managing threads can be resource-intensive and complex. This is w...DiscussMultithreading in javaExecutorService
Prasoon Abhinawblog.pabhinaw.dev路Aug 12, 2023Mastering C#: Unraveling the Power of C# & OOPSIntroduction You might have already come across this multithreading word or multithreading concept in C# .NET, or in any other programming language. Here, in this article, I鈥檒l try to explain the concept in an easy way. I鈥檒l try focusing on what is m...Discuss路42 readsC#