Book Image

Heroku Cloud Application Development

By : Anubhav Hanjura
Book Image

Heroku Cloud Application Development

By: Anubhav Hanjura

Overview of this book

Table of Contents (17 chapters)
Heroku Cloud Application Development
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Chapter 2. Inside Heroku

Now that we have test driven Heroku and know a little bit about its feature set, it's time to understand some inner workings of the Heroku platform.

The Heroku cloud development platform provides you with the foundation for developing, deploying, and troubleshooting your cloud-based applications. It is comprised of the following components:

  • The platform stack: This provides core components such as the operating system, language runtime, and supporting libraries.

  • Request routing mechanism: This provides support to accept client requests and route them reliably to the running process.

  • The execution environment: This provides the necessary runtime support to run your apps.

  • The Logplex logging framework: This is an event logging system to collate application events that emanate from different processes for further processing.

  • The add-on ecosystem: This provides the ability to easily plug in third-party libraries to provide value added services, such as performance monitoring...