1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/beanstalkd.md
Vitor Henrique 1ba7fb9460
pages*: add missing mnemonics (#12151)
* pages*: add missing mnemonics

---------

Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com>
Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
2024-02-19 19:43:42 +05:30

485 B

beanstalkd

A simple and generic work-queue server. More information: https://beanstalkd.github.io/.

  • Start the server, listening on port 11300:

beanstalkd

  • Listen 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}}