Tag

futures

1 views collected around this technical thread.

Architecture Development Notes
Architecture Development Notes
Aug 21, 2024 · Fundamentals

Boost Rust Performance: Master Multithreading vs Futures for Concurrency

This article explores Rust's concurrent programming techniques, comparing traditional multithreading with Futures combinators, detailing thread creation, joining, returning values, the move keyword, and async execution using Tokio, and provides guidance on selecting the appropriate strategy based on task characteristics.

AsyncConcurrencyMultithreading
0 likes · 9 min read
Boost Rust Performance: Master Multithreading vs Futures for Concurrency
Architecture Digest
Architecture Digest
Dec 4, 2016 · Fundamentals

Understanding Asynchronous and Concurrent Programming Models on the JVM

The article explains why asynchronous programming improves resource utilization, compares synchronous and asynchronous styles, and reviews common JVM concurrency models—including threads, thread pools, futures, reactive extensions, async‑await, fibers, and actors—while discussing their trade‑offs and suitability for distributed systems.

ConcurrencyJVMThreads
0 likes · 16 min read
Understanding Asynchronous and Concurrent Programming Models on the JVM