beanstalkg icon indicating copy to clipboard operation
beanstalkg copied to clipboard

Beanstalkg is a go implementation of beanstalkd - A fast, general-purpose work queue

Results 26 beanstalkg issues
Sort by recently updated
recently updated
newest added

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...

help wanted
ready to implement

I observed that reserve with time out produces inconsistent behaviour when clients reconnect. Needs further investigation

bug

This is in reference to a conversation we had on #55 .

in progress

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"...

enhancement
ready to implement

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"...

triage

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...

triage

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...

triage

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.

enhancement
ready to implement