Myriad
view release on metacpan or search on metacpan
lib/Myriad.pod view on Meta::CPAN
=item * L<Async::Microservice> - L<AnyEvent>-based, using HTTP as a protocol, currently a minimal wrapper intended to be used with OpenAPI services
=back
=head2 Java
Although this is the textbook "enterprise-scale platform", Java naturally fits a microservice theme.
=over 4
=item * L<Spring Boot|https://spring.io/guides/gs/spring-boot/> - One of the frameworks that integrates well
with the traditional Java ecosystem, depends on HTTP as a transport. Although there is no unified storage layer,
database access is available through connectors.
=item * L<Micronaut|https://micronaut.io/> - This framework has many integrations with industry-standard
solutions - SQL, MongoDB, Kafka, Redis, gRPC - and they have integration guides for cloud-native solutions
such as AWS or GCP.
=item * L<DropWizard|https://www.dropwizard.io/en/stable/> - A minimal framework that provides a RESTful
interface and storage layer using Hibernate.
=item * L<Helidon|https://helidon.io/> - Oracle's open source attempt, provides support for two types of
transport and SQL access layer using standard Java's packages, built with cloud-native deployment in mind.
=back
=head2 Python
Most of Python's frameworks provide tools to facilitate building logic blocks behind APIs (Flask, Django ..etc).
For work distribution, L<Celery|https://docs.celeryproject.org/en/stable/> is commonly used as a task queue abstraction.
=head2 Rust
=over 4
=item * L<https://rocket.rs/> - although this is a web framework, rather than a complete microservice system,
it's reasonably popular for the request/response part of the equation
=item * L<https://actix.rs/> - another web framework, this time with a focus on the actor pattern
=back
=head2 JS
JS has many frameworks that help to implement the microservice architecture, some are:
=over 4
=item * L<Moleculer|https://moleculer.services/> - generally a full-featured, well-designed microservices framework, highly recommended
=item * L<Seneca|https://senecajs.org/>
=back
=head2 PHP
=over 4
=item * L<Swoft|http://en.swoft.org/> - async support via Swoole's coroutines, HTTP/websockets based with additional support for Redis/database connection pooling and ORM
=back
=head2 Cloud providers
Microservice support at the provider level:
=over 4
=item * L<AWS Lambda|https://aws.amazon.com/lambda> - trigger small containers based on logic, typically combined
with other AWS services for data storage, message sending and other actions
=item * L<Google App Engine> - Google's own attempt
=item * L<Heroku|https://www.heroku.com/> - Allow developers to build a microservices architecture based on the services they provide
like the example they mentioned in this L<blog|https://devcenter.heroku.com/articles/event-driven-microservices-with-apache-kafka>
=back
=head1 AUTHOR
Deriv Group Services Ltd. C<DERIV@cpan.org>
=head1 INHERITED METHODS
=over 4
=item L<Object::Pad::UNIVERSAL>
L<BUILDARGS|Object::Pad::UNIVERSAL/BUILDARGS>
=back
=head1 CONTRIBUTORS
=over 4
=item * Tom Molesworth C<TEAM@cpan.org>
=item * Paul Evans C<PEVANS@cpan.org>
=item * Eyad Arnabeh
=item * Nael Alolwani
=back
=head1 LICENSE
Copyright Deriv Group Services Ltd 2020-2022. Licensed under the same terms as Perl itself.
( run in 0.526 second using v1.01-cache-2.11-cpan-5735350b133 )