Skip to content

Instantly share code, notes, and snippets.

@4n70w4
Created December 28, 2018 19:56
Show Gist options
  • Save 4n70w4/b3df7db0e2eb49c4f3b82814eea1cbfe to your computer and use it in GitHub Desktop.
Save 4n70w4/b3df7db0e2eb49c4f3b82814eea1cbfe to your computer and use it in GitHub Desktop.
<?php
$redis = new \Redis();
$host = 'redis';
$port = 6379;
$redis->pconnect($host, $port);
$redis2 = new \Redis();
$redis2->pconnect($host, $port);
$redis2->close();
$key = 'htest';
$time = time();
$incr = $redis->Set($key, $time);
echo $incr;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment