What is one of the differences between a microservice and a serverless function?
microservice is larger and can do more than a function. A function is a relatively small bit of code that performs only one action in response to an event.
In many cases, microservices can be decomposed into a number of smaller stateless functions. The difference between microservices and functions is not simply the size. Functions are stateless, and they require no knowledge about or configuration of the underlying server---hence, the termserverless.
https://developer.oracle.com/java/fn-project-introduction.html
Currently there are no comments in this discussion, be the first to comment!