Skip to content

Instantly share code, notes, and snippets.

@stockholmux
Created August 22, 2017 16:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stockholmux/bf2342a24fd5a80f235f2b323b876fca to your computer and use it in GitHub Desktop.
Save stockholmux/bf2342a24fd5a80f235f2b323b876fca to your computer and use it in GitHub Desktop.
redis-connection.php
<?php
require_once 'vendor/autoload.php';
$client = new Predis\Client([
/* ... */
]);
$client->set('foo', 'bar');
$value = $client->get('foo');
echo "worked? $value"
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment