Skip to content

Latest commit

 

History

History
22 lines (20 loc) · 1.1 KB

linux-choices.md

File metadata and controls

22 lines (20 loc) · 1.1 KB

Choice 1 of 99.999

  • Inetd/Xinetd
    • Low effort
    • No networking required, but is driven by it
    • Uses Stdin/Stdout
    • But write everything yourself
  • Daemon
    • Startup as background application
    • Keep yourself alive
    • Handle your own networking
    • Handle your own logging
  • Console application in Docker
    • Keep yourself alive
    • Handle your own networking
    • Isolated from the rest
    • Easy cloud integration
    • Docker logging system via Stdout
  • Other...

Note:

  • Experienced with Linux?