3 Matching Annotations
- Sep 2024
-
www.mikeperham.com www.mikeperham.com
-
Your application code should not be dealing with PID files, log redirection or other low-level concerns.
-
Let your operating system handle daemons, respawning and logging while you focus on your application features and users.
-
This makes developing a modern daemon much easier. The init config file is what you use to configure logging, run as a user, and many other things you previous did in code. You tweak a few init config settings; your code focuses less on housekeeping and more on functionality.
Tags
- leverage library/tool to do something for you
- focus
- core logic
- boilerplate
- focus on the high-level design, not on the low-level details
- keep it simple
- making it easy to do the right thing
- init system: let it handle all that
- do one thing and do it well
- focus on the main functionality
Annotators
URL
-