mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-03-10 06:58:07 +00:00
Update cheatsheets
This commit is contained in:
25
beanstalkd
Normal file
25
beanstalkd
Normal file
@@ -0,0 +1,25 @@
|
||||
---
|
||||
syntax: markdown
|
||||
tags: [tldr, common]
|
||||
source: https://github.com/tldr-pages/tldr.git
|
||||
---
|
||||
# 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}}`
|
||||
Reference in New Issue
Block a user