Skip to content

Instantly share code, notes, and snippets.

@sokil
Last active August 29, 2015 14:05
Show Gist options
  • Save sokil/31dc82455caee92e826f to your computer and use it in GitHub Desktop.
Save sokil/31dc82455caee92e826f to your computer and use it in GitHub Desktop.
Redis queue
<?php
$client = new \Predis\Client([
'read_write_timeout' => 0,
]);
while(true) {
$message = $client->blpop('queue1', 0);
}
<?php
$client = new \Predis\Client();
$client->rpush('queue1', 'message ' . time());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment