mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-22 14:42:07 +02:00

* pages/*: prefer brand name and add backticks around commands --------- Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com>
499 B
499 B
beanstalkd
A simple and generic work-queue server. More information: https://beanstalkd.github.io/.
- Start Beanstalk, listening on port 11300:
beanstalkd
- Start Beanstalk listening on a custom port 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}}