Cargando…

Learning Akka : build fault-tolerant, concurrent, and distributed applications with Akka /

Build fault tolerant concurrent and distributed applications with AkkaAbout This Book Build networked applications that self-heal Scale out your applications to handle more traffic faster An easy-to-follow guide with a number of examples to ensure you get the best start with AkkaWho This Book Is For...

Descripción completa

Detalles Bibliográficos
Clasificación:Libro Electrónico
Autor principal: Goodwin, Jason (Autor)
Formato: Electrónico eBook
Idioma:Inglés
Publicado: Birmingham, UK : Packt Publishing, 2015.
Colección:Community experience distilled.
Temas:
Acceso en línea:Texto completo

MARC

LEADER 00000cam a2200000Ii 4500
001 EBSCO_ocn935744733
003 OCoLC
005 20231017213018.0
006 m o d
007 cr unu||||||||
008 160122s2015 enka o 001 0 eng d
040 |a UMI  |b eng  |e rda  |e pn  |c UMI  |d N$T  |d OCLCF  |d IDEBK  |d YDXCP  |d COO  |d DEBSZ  |d DEBBG  |d OCLCQ  |d CEF  |d NLE  |d UKMGB  |d UAB  |d AU@  |d UKAHL  |d RDF  |d OCLCO  |d OCLCQ  |d DXU  |d OCLCQ  |d QGK  |d OCLCO 
015 |a GBB747414  |2 bnb 
016 7 |a 018007205  |2 Uk 
019 |a 933783520  |a 934047682  |a 1259137147 
020 |a 9781784393540  |q electronic bk. 
020 |a 1784393541  |q electronic bk. 
020 |z 1784393002 
020 |z 9781784393007 
020 |a 1784393002 
020 |a 9781784393007 
024 3 |a 9781784393007 
029 1 |a DEBSZ  |b 473885271 
029 1 |a DEBBG  |b BV043968702 
029 1 |a DEBSZ  |b 485792095 
029 1 |a GBVCP  |b 88275162X 
029 1 |a UKMGB  |b 018007205 
029 1 |a AU@  |b 000057035972 
035 |a (OCoLC)935744733  |z (OCoLC)933783520  |z (OCoLC)934047682  |z (OCoLC)1259137147 
037 |a CL0500000706  |b Safari Books Online 
050 4 |a QA76.73.S28 
072 7 |a COM  |x 051210  |2 bisacsh 
072 7 |a COM  |x 051390  |2 bisacsh 
072 7 |a COM  |x 051010  |2 bisacsh 
082 0 4 |a 005.133  |2 23 
049 |a UAMI 
100 1 |a Goodwin, Jason,  |e author. 
245 1 0 |a Learning Akka :  |b build fault-tolerant, concurrent, and distributed applications with Akka /  |c Jason Goodwin. 
264 1 |a Birmingham, UK :  |b Packt Publishing,  |c 2015. 
300 |a 1 online resource (1 volume) :  |b illustrations. 
336 |a text  |b txt  |2 rdacontent 
337 |a computer  |b c  |2 rdamedia 
338 |a online resource  |b cr  |2 rdacarrier 
347 |a text file 
490 1 |a Community experience distilled 
588 |a Description based on online resource; title from cover page (Safari, viewed January 20, 2016). 
500 |a Includes index. 
520 8 |a Build fault tolerant concurrent and distributed applications with AkkaAbout This Book Build networked applications that self-heal Scale out your applications to handle more traffic faster An easy-to-follow guide with a number of examples to ensure you get the best start with AkkaWho This Book Is ForThis book is intended for beginner to intermediate Java or Scala developers who want to build applications to serve the high-scale user demands in computing today. If you need your applications to handle the ever-growing user bases and datasets with high performance demands, then this book is for you. Learning Akka will let you do more for your users with less code and less complexity, by building and scaling your networked applications with ease.What You Will Learn Use Akka to overcome the challenges of concurrent programming Resolve the issues faced in distributed computing with the help of Akka Scale applications to serve a high number of concurrent users Make your system fault-tolerant with self-healing applications Provide a timely response to users with easy concurrency Reduce hardware costs by building more efficient multi-user applications Maximise network efficiency by scaling itIn DetailSoftware today has to work with more data, more users, more cores, and more servers than ever. Akka is a distributed computing toolkit that enables developers to build correct concurrent and distributed applications using Java and Scala with ease, applications that scale across servers and respond to failure by self-healing. As well as simplifying development, Akka enables multiple concurrency development patterns with particular support and architecture derived from Erlang's concept of actors (lightweight concurrent entities). Akka is written in Scala, which has become the programming language of choice for development on the Akka platform.Learning Akka aims to be a comprehensive walkthrough of Akka. This book will take you on a journey through all the concepts of Akka that you need in order to get started with concurrent and distributed applications and even build your own.Beginning with the concept of Actors, the book will take you through concurrency in Akka. Moving on to networked applications, this book will explain the common pitfalls in these difficult problem areas while teaching you how to use Akka to overcome these problems with ease.The book is an easy to follow example-based guide that will strengthen your basic knowledge of Akka and aid you in applying the same to real-world scenarios.Style and approachAn easy-to-follow, example-based guide that will take you through building several networked-applications that work together while you are learning concurrent and distributed computing concepts. Each topic is explained while showing you how to design with Akka and how it is used to overcome common problems in applications. By showing Akka in context to the problems, it will help you understand what the common problems are in distributed applications and how to overcome them. 
505 0 |a Cover; Copyright; Credits; About the Author; Acknowledgments; About the Reviewer; www.PacktPub.com; Table of Contents; Preface; Chapter 1: Starting Life as an Actor; What's in this book?; Chapter overview; What is Akka; Actor Model origins; What's an Actor anyway?; Actors and Message passing; The Evolution of supervision and fault tolerance in Erlang; The Evolution of distribution and location transparency; What we will build; Example 1 -- handling distributed state; Example 2 -- getting lots of work done; Setting up your environment; Choosing a language; Installing Java -- Oracle JDK8 
505 8 |a Installing on WindowsInstalling on OSX; Installing on Linux or Unix (Universal instructions); Ensuring Java is configured in your environment; Installing Scala; Installing Typesafe Activator; Windows; Linux/Unix/OSX; OSX; Creating a new project; Installing an IDE; Install IntelliJ CE; Eclipse; Creating your first Akka application -- setting up the SBT project; Adding Akka to build.sbt; A note on getting the right Scala version with %%; Adding other Dependencies from Maven Central; Creating your first Actor; Making the Message first; Defining Actor response to the Message 
505 8 |a Validating the code with unit testsAkka Testkit; Running the test; Homework; Summary; Chapter 2: Actors and Concurrency; Reactive system design; The 4 reactive tenets; Responsive; Elastic; Resilient; Event-driven/message-driven; Reactive Tenet Correlation; Anatomy of an Actor; Java Actor API; Scala Actor API; Creating an actor; Props; Promises, futures, and event-driven programming models; Blocking versus event-driven APIs; Skills check-point; Having an Actor respond via a future; Java example; Scala example; Blocking threads in tests; Understanding futures and promises 
505 8 |a Future -- expressing failure and latency in typesPreparing the DB and messages; The messages; Implementing the DB functionality; Enabling remoting; Main; Publishing the messages; Starting the DB; Producing the client; Scaffolding the project; Modifying build.sbt; Building the client; Testing; Homework; General learning; Project homework; Summary; Chapter 3: Getting the Message Across; Setting the stage with an example problem; Sketching the project; Core functionality; Messaging delivery; Messages should be immutable; Ask message pattern; Designing with Ask 
505 8 |a Callbacks execute in another execution contextTimeouts are required; Timeout stacktraces aren't useful; Ask has overhead; Complexity of Actors and Ask; Tell; Designing with Tell; Forward; Pipe; Homework; General learning; Project homework; Summary; Chapter 4: Actor Lifecycle -- Handling State and Failure; The 8 Fallacies of Distributed Computing; The network is reliable; Bandwidth is infinite; The network is secure; Network topology doesn't change; There is one administrator; Transport cost is zero; The network is homogeneous; Failure; Isolating failure; Redundancy; Supervision 
590 |a eBooks on EBSCOhost  |b EBSCO eBook Subscription Academic Collection - Worldwide 
650 0 |a Scala (Computer program language) 
650 0 |a Application software  |x Development. 
650 0 |a Java (Computer program language) 
650 6 |a Scala (Langage de programmation) 
650 6 |a Logiciels d'application  |x Développement. 
650 6 |a Java (Langage de programmation) 
650 7 |a COMPUTERS  |x Programming  |x Object Oriented.  |2 bisacsh 
650 7 |a COMPUTERS COMPUTERS  |x Programming  |x Open Source.  |2 bisacsh 
650 7 |a COMPUTERS  |x Programming Languages  |x General.  |2 bisacsh 
650 7 |a Application software  |x Development  |2 fast 
650 7 |a Java (Computer program language)  |2 fast 
650 7 |a Scala (Computer program language)  |2 fast 
776 0 8 |i Erscheint auch als:  |n Druck-Ausgabe 
830 0 |a Community experience distilled. 
856 4 0 |u https://ebsco.uam.elogim.com/login.aspx?direct=true&scope=site&db=nlebk&AN=1134875  |z Texto completo 
938 |a Askews and Holts Library Services  |b ASKH  |n BDZ0026626870 
938 |a EBSCOhost  |b EBSC  |n 1134875 
938 |a ProQuest MyiLibrary Digital eBook Collection  |b IDEB  |n cis33469529 
938 |a YBP Library Services  |b YANK  |n 12774030 
994 |a 92  |b IZTAP