|
|
|
|
|
by jeremyjh
5014 days ago
|
|
Loadable modules like the way Apache/nginx do, or Nagios or quite a few other basic infrastructure applications. Another related issue (though not specifically dynamic linking) is with client libraries for server software. For example say you wrote something like Redis in Go. You write a Go client, then you want to start porting client libraries. You will be starting over from scratch because you can't expose your Go code through any kind of native interface. If you write client libraries in C it is pretty easy to create language bindings in all other popular languages. So if I wrote a server in Go that I wanted to distribute widely, I think I'd have to write the reference client in C. |
|
Or, to put it another way,
I'm not convinced this restriction is anything but good.