Files
nexusphp/app/Console/Commands/TorrentLoadPiecesHash.php

40 lines
895 B
PHP
Raw Normal View History

2023-07-26 03:29:50 +08:00
<?php
namespace App\Console\Commands;
use App\Repositories\TorrentRepository;
use Illuminate\Console\Command;
class TorrentLoadPiecesHash extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'torrent:load_pieces_hash {--id=}';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Load torrent pieces hash to cache';
/**
* Execute the console command.
*
* @return int
*/
public function handle()
{
$begin = time();
$id = $this->option('id');
$rep = new TorrentRepository();
$this->info("id: $id");
$total = $rep->loadPiecesHashCache($id);
$this->info(sprintf("total: %s, cost time: %s seconds.", $total, time() - $begin));
return Command::SUCCESS;
}
}