HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

beanstalkd — A simple and generic work-queue server. More information: <https://manned.org/beanstalkd>.

Submitted by: @import:tldr-pages··
0
Viewed 0 times
simplecommandandqueuecligenericbeanstalkdwork

Problem

How to use the beanstalkd command: A simple and generic work-queue server. More information: <https://manned.org/beanstalkd>.

Solution

beanstalkd — A simple and generic work-queue server. More information: <https://manned.org/beanstalkd>.

Start the server, listening on port 11300:
beanstalkd


[l]isten 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}}

Code Snippets

Start the server, listening on port 11300

beanstalkd

[l]isten 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}}

Context

tldr-pages: common/beanstalkd

Revisions (0)

No revisions yet.