Book Image

Akka Essentials

By : Munish K. Gupta
Book Image

Akka Essentials

By: Munish K. Gupta

Overview of this book

<p>Developers/Architects need to manage the fine balance between the ever increasing load and ever decreasing response latency. Applications need to be designed for Internet scale, which means you need to be skilled in building large distributed, scalable, and concurrent applications. Whether you are building the next Facebook or working for a Fortune 500 organization, you need to be ready to design scalable, concurrent, and fault-tolerant applications. Akka is a toolkit and runtime for building highly concurrent, distributed, and fault-tolerant event-driven applications on the JVM.<br /><br />"Akka Essentials" will show you the current challenges with Java Scalability and concurrency model and how Akka&rsquo;s Actor Model can help you design and build applications that are inherently scalable and fault-tolerant. Whether you are building new applications or want to refactor an existing application, you will learn the right techniques to build and scale up in no time.</p>
Table of Contents (19 chapters)
Akka Essentials
Credits
About the Author
Acknowledgement
About the Reviewers
www.PacktPub.com
Preface
Free Chapter
1
Introduction to Akka
Index

Summary


In this chapter, we covered the basics of the transaction management and STM. We explored the Akka construct for STM – transactors that are implemented via Refs, and UntypedTransactor instances that provide the automated, coordinated services for managing and updating Refs. Lastly, we explored the agents, modeled on the Clojure agents that provide an uncoordinated, asynchronous change of individual locations.

In the next chapter, we will cover what it takes to make an Akka application ready for production. We will explore how to write unit tests involving actors, managing environment configuration changes and deployment strategy.