Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Go application server?

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?

like image 475
1osmi Avatar asked Oct 25 '25 02:10

1osmi


1 Answers

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.

like image 154
Max Avatar answered Oct 26 '25 18:10

Max