beanstalkd: add page (#1993)

italian
Starbeamrainbowlabs 2018-02-16 23:19:07 +00:00 committed by Owen Voke
parent 22d3ce22ab
commit ad34f46429
1 changed files with 19 additions and 0 deletions

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}}`