SystemDaemon – Simple base for system daemons in PHP

SystemDaemon is a library that helps with writing system daemons and services in PHP.  PHP is not my personal favorite language for such tasks, but there is often a need, despite the preference.  Some examples are:

  • scheduled tasks (cron jobs) that need to execute more often than once per minute
  • message queue workers
  • real-time synchronization scripts

 

Leave a Comment