Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
May 24, 2022 07:48 am GMT

MicroService Framework in C

MicroService

What are MicroServices?

Microservice architecture, or simply microservices, is a distinctive method of developing software systems that tries to focus on building single-function modules with well-defined interfaces and operations. The trend has grown popular in recent years as Enterprises look to become more Agile and move towards a DevOps and continuous testing.

Why Microservices?

Here I list some good reason to switch to microservices architecture:

  • Increase Resilience
  • Improve Scalability
  • Decoupling of Features
  • Simple API
  • Faster Framework
  • Easier Debugging and Maintenance
  • Continuous Delivery
  • Improve deployment velocity
  • Better adaptation on Market requests
  • Reduce Development and Deployment Cost

Why C++?

Most of the Server application are developed in C++ and the needs of performance is ever more requested. So a low level language can be a good solution, and the C++ wins over the other languages.

What is CXXMicroService?

GitHub logo ZigRazor / CXXMicroService

A C++ Library that give microservice framework ( Server / Client ) upon 0mq framework

CXXMicroService

A C++ Library that give microservice framework ( Server / Client ) upon 0mq framework

Requerements to build LOG4CXX

apt-get install build-essential libapr1-dev libaprutil1-dev gzip zip

$ git clone https://github.com/catchorg/Catch2.git$ cd Catch2$ cmake -Bbuild -H. -DBUILD_TESTING=OFF$ sudo cmake --build build/ --target install




CXXMicroService is a completely free and Open Source framework that give to the developers the possibility to build up a microservice in a faster way.
It aims to provide a simple set of API to do all you need with microservice.
The library is under development and all the contributions are welcome.

Please give me a feedback on this project, and if you want to contribute, please write me at [email protected]

Thank you in advance,
Happy coding!


Original Link: https://dev.to/zigrazor/microservice-framework-in-c-364p

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To