Jets is a Ruby Serverless Framework that provides you with everything required to build an application and deploy it to AWS Lambda.
https://github.com/boltops-tools/jets
#Serverless #AWS #cloud #lambda #ruby @awsdevelopers @awscloud
GitHub - boltops-tools/jets: Ruby on Jets

Ruby on Jets. Contribute to boltops-tools/jets development by creating an account on GitHub.

GitHub
@christosmatskas Does Jets handle function state? If so, how?
@benoitmartin check out the Jets docs for Associated and Shared resources. State (enabled/disabled) is handled by the framework, whereas external state has to be stored in an external resource. I hope this helps
@christosmatskas So if I understood the doc correctly, a function's state is either handled internally by the framework or externally using a database. What's the difference? Why would I chose one over the other?
@benoitmartin external state management will help with resilience and scalability as it sits outside the Lambda job process
@christosmatskas That's fair. Thanks for the info.