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
2019-04-12 14:41:22 +02:00

20 lines
493 B
Markdown

# beanstalkd
> A simple and generic work-queue server.
> Homepage: <https://beanstalkd.github.io/>.
- 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}}`