NetTalk Central
NetTalk Web Server => Web Server - Ask For Help => Topic started by: osquiabro on February 06, 2025, 12:01:00 PM
-
Is possible create microservices with NT.
-
What is the problem you're trying to solve?
-
Well, microservice is new for me and chatgpt said it is possible to create it with nettalk.
But chatgpt also says the following:
However, if you need to scale and handle high traffic, it is advisable to use modern languages like Python, Node.js or C# along with Clarion in the backend.
-
Hi,
I don' t know anything about microservices but simple research suggests that it might be like an API which you can do easily with net talk.
What is your goal or what are you trying to do?
Ron
-
The short answer is "yes". But the longer answer is "define microservice". My definition and yours may be different.
-
Generative by AI is experimental.
Microservices is a software development approach that breaks down applications into independent services that communicate with each other. This allows for faster development, easier scaling, and better business continuity.
How it works
Services: Each microservice is a small, independent service that handles a specific task or application feature.
Communication: Microservices communicate with each other using well-defined APIs.
Deployment: Microservices can be deployed independently, so updates can be made without rebuilding the entire application.
Scaling: Microservices can be scaled individually, so only the components that need it are scaled.
Data: Each microservice is responsible for its own data persistence.
Benefits
Faster development: Microservices can be developed faster than traditional monolithic applications.
Easier scaling: Microservices can be scaled more precisely than monolithic applications.
Better business continuity: Microservices can be located across different geographical locations, so a problem in one location won't take down the entire system.
According with amazon:
https://aws.amazon.com/microservices/
-
sounds like web services to me.
So, then yes, the answer is yes.
Or, let me put it another way. A "microservice" is just a program that doesn't do much. Other programs talk to it, and it does some small thing using a Web Service API. It's not a "technology", it's an idea - the idea of making lots of small exe's which each exe does one task, and then you have gazillions of these things running and so other programs can call them, get something done, and so on.