beanstalkg
beanstalkg copied to clipboard
Beanstalkg is a go implementation of beanstalkd - A fast, general-purpose work queue
I just noticed because beanstalkg uses string ids instead of integers as in the case of beanstalkd some clients available for beanstalkd might not work correctly for beanstalkg. I already...
I observed that reserve with time out produces inconsistent behaviour when clients reconnect. Needs further investigation
This is in reference to a conversation we had on #55 .
https://vimukthi.com/queue-story-1-introduction-to-beanstalkg-3f60ecbd6477
The peek commands let the client inspect a job in the system. There are four variations. All but the first operate only on the currently used tube. - "peek \r\n"...
The stats-job command gives statistical information about the specified job if it exists. Its form is: stats-job \r\n - is a job id. The response is one of: - "NOT_FOUND\r\n"...
The stats-tube command gives statistical information about the specified tube if it exists. Its form is: stats-tube \r\n - is a name at most 200 bytes. Stats will be returned...
The stats command gives statistical information about the system as a whole. Its form is: stats\r\n The server will respond: OK \r\n \r\n - is the size of the following...
The list-tube-used command returns the tube currently being used by the client. Its form is: list-tube-used\r\n The response is: USING \r\n - is the name of the tube being used.