Mastering Concurrency Programming with Java 9 - Second Edition: Fast, reactive and parallel application development
<p><b>Master the principles to make applications robust, scalable and responsive</b></p><h2>About This Book</h2><ul><li>Implement concurrent applications using the Java 9 Concurrency API and its new components</li><li>Improve the performance of your applications and process more data at the same time, taking advantage of all of your resources</li><li>Construct real-world examples related to machine learning, data mining, natural language processing, and more</li></ul><h2>Who This Book Is For</h2><p>This book is for competent Java developers who have basic understanding of concurrency, but knowledge of effective implementation of concurrent programs or usage of streams for making processes more efficient is not required</p><h2>What You Will Learn</h2><ul><li>Master the principles that every concurrent application must follow</li><li>See how to parallelize a sequential algorithm to obtain better performance without data inconsistencies and deadlocks</li><li>Get the most from the Java Concurrency API components</li><li>Separate the thread management from the rest of the application with the Executor component</li><li>Execute phased-based tasks in an efficient way with the Phaser components</li><li>Solve problems using a parallelized version of the divide and conquer paradigm with the Fork / Join framework</li><li>Find out how to use parallel Streams and Reactive Streams</li><li>Implement the “map and reduce†and “map and collect†programming models</li><li>Control the concurrent data structures and synchronization mechanisms provided by the Java Concurrency API</li><li>Implement efficient solutions for some actual problems such as data mining, machine