VOOZH about

URL: https://www.javacodegeeks.com/tag/concurrency/page/2

⇱ Concurrency Archives - Page 2 of 20 - Java Code Geeks


  • Node.js👁 Image
    Omozegie AziegbeOctober 21st, 2025
    0 264

    Understanding How the Node.js Event Loop Works

    Node.js is known for its ability to handle highly concurrent workloads using a single-threaded event-driven model. This design allows Node.js…

    Read More »
  • Core Java👁 Image
    Omozegie AziegbeJune 2nd, 2025
    0 685

    Java Thread-per-Connection vs Thread-per-Request

    This article explores how Java uses threads to manage client connections and process incoming requests. We will compare the thread-per-connection…

    Read More »
  • Core Java👁 Image
    Eleftheria DrosopoulouMay 2nd, 2025
    1 3,273

    Why Java Developers Are Switching to Go (And Why They’re Wrong)

    Java has been the backbone of enterprise software for decades, but in recent years, Go (Golang)—created by Google—has gained traction, especially…

    Read More »
  • Software Development👁 Image
    Eleftheria DrosopoulouNovember 13th, 2024
    0 155

    Scalable Concurrency with Async/Await in Rust

    Rust’s async/await syntax offers developers a powerful way to build concurrent systems without the traditional overhead of multithreading. Unlike synchronous…

    Read More »
  • Core Java👁 Image
    Omozegie AziegbeJuly 25th, 2024
    0 3,470

    Using Executors.newVirtualThreadPerTaskExecutor() in Java

    Java introduced virtual threads with Project Loom to simplify concurrency and improve the scalability of applications. Virtual threads are lightweight…

    Read More »
  • Software Development👁 Image
    Ashley FriezeFebruary 14th, 2021
    0 138

    Threadless Wonders

    Before going into detail on this subject, I should point out that one experience does not itself make for a…

    Read More »
  • Core Java👁 Image
    Tomasz NurkiewiczSeptember 15th, 2017
    1 204

    Idiomatic concurrency: flatMap() vs. parallel() – RxJava FAQ

    Simple, effective and safe concurrency was one of the design principles of RxJava. Yet, ironically, it’s probably one of the…

    Read More »
  • Software Development👁 Image
    Mark NeedhamJanuary 31st, 2017
    2 283

    Go: Multi-threaded writing to a CSV file

    As part of a Go script I’ve been working on I wanted to write to a CSV file from multiple…

    Read More »
  • Core Java👁 Image
    Tomasz NurkiewiczOctober 12th, 2016
    0 204

    Small scale stream processing kata. Part 1: thread pools

    Once again I prepared a programming contest on GeeCON 2016 for my company. This time the assignment required designing and…

    Read More »
  • «
  • 1
  • 2
  • 3
  • 4
  • 5
  • »
  • 10
  • 20
  • ...
  • Last
Back to top button
Close