Would it be possible to leverage a design based on modular components running on an application server with Go platform?
Is there a limitation that makes this design impossible with Go?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
There is nothing similar to application server that are available in Java or .NET
But there is google AppEngine that supports Go
There is no way to load/unload code in Go like in Java or .NET
You can’t compile go as library that you will load with another Go App.
Anyway you can create Application server with Go.
It will have multiple processes and load/unload code by starting/stopping processes.
Also it may compile code on server by embedding some server specific code in module.
e.g. such extra code may implement AppServer Inter Process Communication.