Skip to content

Instantly share code, notes, and snippets.

@huglester
Last active December 17, 2015 08:58
Show Gist options
  • Save huglester/5583529 to your computer and use it in GitHub Desktop.
Save huglester/5583529 to your computer and use it in GitHub Desktop.
Pheanstalk clear tube command
<?php
public function clearTube($tube)
{
try
{
while($job = $pheanstalk->peekReady($tube))
{
$pheanstalk->delete($job);
}
}
catch(\Pheanstalk_Exception_ServerException $e){}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment