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:
parent
22d3ce22ab
commit
ad34f46429
1 changed files with 19 additions and 0 deletions
19
pages/common/beanstalkd.md
Normal file
19
pages/common/beanstalkd.md
Normal 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}}`
|
Loading…
Add table
Reference in a new issue