0

I'm writing some programs in C that will run in a distributed environment. Is there anything like an application server for C that provides clustering, monitoring, logging, etc?

Hennes
  • 65,804
  • 7
  • 115
  • 169
Jason
  • 109

2 Answers2

1

Application servers are more like a Java and Python and OOP thing. But surely there are "object request broker" models that are implemented in C, just can just add the libraries to your C program. You can provide us a little more details about your environment, I use Visual Studio on Windows and the clang compiler and gcc on Linux and SunOS. If you study the Q&A on various programming sites here, like SO that are tagged C programming and application server you will broaden and deepen your knowledge.

-1

There are application servers for C, for example Enduro/X or Tuxedo. Each compiled executable operates as a "server" process which provides services. These platforms monitors them, reboots if crashed and provides load balancing features. Also middleware options are available.

Madars Vi
  • 101