Tag:jvm
All the articles with the tag "jvm".
Micronaut and AWS Lambda
Posted on:November 24, 2020 at 09:22 PMA year ago, I was developing an enterprise solution using aws lambda with Java and at that time there was no support for high level tools and frameworks in the ecosystem with respect to serverless space something like Spring Boot. I’ve used spring cloud in aws lambda but it didn’t work for the solution we are building. So I’ve started developing with the plain AWS SDK library and Speedment ORM but after building the few services I’ve felt a couple of bottlenecks.
Kotlin Coroutines and JVM – Writing Non Blocking Code With Ease
Posted on:July 10, 2022 at 05:04 AMThe systems we build nowadays don’t really do a lot of computation, instead they communicate between services such as Database, REST API’s, etc. If you look deeper we are building a system that wait’s most of the time. We send a request to the server and we wait for the response. Microservices, Rest API that’s part of our daily life. So, What’s the problem with waiting ?