mirror of
https://github.com/tldr-pages/tldr.git
synced 2026-08-28 11:25:16 +08:00
cb6641589c
Co-authored-by: Nelson Figueroa <30811275+nelsonfigueroa@users.noreply.github.com>
483 B
483 B
beanstalkd
A simple and generic work-queue server. More information: https://manned.org/beanstalkd.
- Start the server, listening on port 11300:
beanstalkd
- [l]isten on a specific [p]ort and address:
beanstalkd -l {{ip_address}} -p {{port_number}}
- Persist work queues by saving them to disk:
beanstalkd -b {{path/to/persistence_directory}}
- Sync to the persistence directory every 500 milliseconds:
beanstalkd -b {{path/to/persistence_directory}} -f 500