Commit 14cbbcef authored by shajiaiming's avatar shajiaiming

test

parent 576714df
...@@ -10,6 +10,9 @@ class SecKillController extends BaseController ...@@ -10,6 +10,9 @@ class SecKillController extends BaseController
{ {
public function actionIndex() public function actionIndex()
{ {
echo hash(141414, 'The quick brown fox jumped over the lazy dog.');
exit;
$num = $this->randomFloat(1, 3); $num = $this->randomFloat(1, 3);
$expire = 5; $expire = 5;
$nowTime = time(); $nowTime = time();
...@@ -32,7 +35,10 @@ class SecKillController extends BaseController ...@@ -32,7 +35,10 @@ class SecKillController extends BaseController
goto doEnd; goto doEnd;
} }
//$is_locked = $redis->set($lock_key, $expTime, 'ex', 5, 'nx');
$is_locked = $redis->setnx($lock_key, $expTime); $is_locked = $redis->setnx($lock_key, $expTime);
if (!$is_locked) { if (!$is_locked) {
$this->msg = 'ahaaa, locked'; $this->msg = 'ahaaa, locked';
$this->code = -1; $this->code = -1;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment