mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-24 03:57:22 +08:00
add torrent pieces hash
This commit is contained in:
@@ -0,0 +1,39 @@
|
||||
<?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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user