Book Image

Building Applications with Scala

By : Diego Pacheco
Book Image

Building Applications with Scala

By: Diego Pacheco

Overview of this book

<p>Scala is known for incorporating both object-oriented and functional programming into a concise and extremely powerful package. However, creating an app in Scala can get a little tricky because of the complexity the language has. This book will help you dive straight into app development by creating a real, reactive, and functional application. We will provide you with practical examples and instructions using a hands-on approach that will give you a firm grounding in reactive functional principles.</p> <p>The book will take you through all the fundamentals of app development within Scala as you build an application piece by piece. We’ve made sure to incorporate everything you need from setting up to building reports and scaling architecture. This book also covers the most useful tools available in the Scala ecosystem, such as Slick, Play, and Akka, and a whole lot more. It will help you unlock the secrets of building your own up-to-date Scala application while maximizing performance and scalability.</p>
Table of Contents (17 chapters)
Building Applications with Scala
Credits
About the Author
Acknowledgments
About the Reviewer
www.PacktPub.com
Preface

Play framework and high CPU usage


If you notice your CPU usage going higher than it should, do not worry; there is a fix for it. Actually, the issue is related to SBT. Just make sure that, when you run Activator, you pass the following parameter:

$ activator -Dsbt.task.forcegc=false.

Going back to ReactiveWebStore, let's create new routes. Open ReactiveWebStore/conf/routes:

    GET   /rnd/double  
    controllers.RndDoubleGeneratorController.rndDouble 
    GET   /rnd/call    controllers.RndDoubleGeneratorController.rndCall 
    GET   /rnd/rx      controllers.RndDoubleGeneratorController.rxCall 
    GET   /rnd/rxbat      
    controllers.RndDoubleGeneratorController.rxScalaCallBatch 

Once we have the new routes, we need to create the new controller. This controller needs to be located with the other controllers at ReactiveWebStore/app/controllers.

RndDoubleGeneratorController

The RndDoubleGeneratorController class file should look like this:

    @Singleton 
...