- Mastering Concurrency Programming with Java 8
- Javier Fernández González
- 87字
- 2021-07-16 12:55:02
Chapter 2. Managing Lots of Threads – Executors
When you implement a simple concurrent application, you create and execute a thread per concurrent task. This approach can have some important issues. Since Java version 5, the Java concurrency API includes the executor framework to improve the performance of concurrent applications with a lot of concurrent tasks. In this chapter, we will cover the following:
- An introduction to executors
- The first example – the k-nearest neighbors algorithm
- The second example – concurrency in a client/server environment
推薦閱讀
- Microsoft Application Virtualization Cookbook
- PHP程序設計(慕課版)
- Learn Programming in Python with Cody Jackson
- Learning Laravel 4 Application Development
- Python機器學習實戰
- Big Data Analytics
- Scala程序員面試算法寶典
- Visual Basic程序設計
- PySpark Cookbook
- Webpack實戰:入門、進階與調優
- Julia 1.0 Programming Complete Reference Guide
- jQuery技術內幕:深入解析jQuery架構設計與實現原理
- Java并發實現原理:JDK源碼剖析
- Visual Basic程序設計基礎
- 深入淺出 HTTPS:從原理到實戰