1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 01:22:09 +02:00

beanstalkd: add page (#1993)

This commit is contained in:
Starbeamrainbowlabs 2018-02-16 23:19:07 +00:00 committed by Owen Voke
parent 22d3ce22ab
commit ad34f46429

View file

@ -0,0 +1,19 @@
# beanstalkd
> A simple and generic work-queue server.
- Start beanstalkd, listening on port 11300:
`beanstalkd`
- Start beanstalkd 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}}`