Remove unnecessary comments from command. #270

This commit is contained in:
Korina Cordero 2019-10-30 02:20:32 +00:00
parent f70155a137
commit 934afecee2

View file

@ -49,12 +49,9 @@ class SeedRiderSessionsCommand extends Command
// key for redis
$redis_key = 'rider.id.' . $session_id;
$output->writeln('key: ' . $redis_key);
//$output->writeln('key: ' . $redis_key);
// set to redis cache
// not sure if regular key value or hash. if hash, what name?
// for now, use regular key value
// $this->redis->hset($redis_key, $redis_key, $rider_id);
$this->redis->set($redis_key, $rider_id);
}
}