Book Image

Supercharge Your Applications with GraalVM

By : A B Vijay Kumar
Book Image

Supercharge Your Applications with GraalVM

By: A B Vijay Kumar

Overview of this book

GraalVM is a universal virtual machine that allows programmers to compile and run applications written in both JVM and non-JVM languages. It improves the performance and efficiency of applications, making it an ideal companion for cloud-native or microservices-based applications. This book is a hands-on guide, with step-by-step instructions on how to work with GraalVM. Starting with a quick introduction to the GraalVM architecture and how things work under the hood, you'll discover the performance benefits of running your Java applications on GraalVM. You'll then learn how to create native images and understand how AOT (ahead-of-time) can improve application performance significantly. The book covers examples of building polyglot applications that will help you explore the interoperability between languages running on the same VM. You'll also see how you can use the Truffle framework to implement any language of your choice to run optimally on GraalVM. By the end of this book, you'll not only have learned how GraalVM is beneficial in cloud-native and microservices development but also how to leverage its capabilities to create high-performing polyglot applications.
Table of Contents (17 chapters)
1
Section 1: The Evolution of JVM
4
Section 2: Getting Up and Running with GraalVM – Architecture and Implementation
8
Section 3: Polyglot with Graal
13
Section 4: Microservices with Graal

Summary

In this chapter, we went into the details of how Python, R, and Java on Truffle interpreters are implemented in Truffle. We also explored the polyglot interoperability features that these languages provide, along with coding examples. We understood the differences in the way each of these languages is interpreted. The chapter provided a hands-on walkthrough of how to run code and write polyglot applications in these various languages. We used very simple code so that you could easily understand the concepts and API to implement polyglot applications.

You should be able to use this knowledge to write polyglot applications on GraalVM. Though most of these languages are still in the experimental phase at the time of writing the book, they provide great opportunities to build high-performance polyglot applications.

In the next chapter, you will gain good hands-on experience and understanding of how polyglot works, how to build Python and R applications on GraalVM, and how...