4

だから私は次の職人のコマンドコントローラを持っています:

<?php

namespace App\Console\Commands;

use Illuminate\Console\Command;
use MongoDB;

class TestCommand extends Command
{
    /**
     * The name and signature of the console command.
     *
     * @var string
     */
    protected $signature = 'testcommand';

    /**
     * The console command description.
     *
     * @var string
     */
    protected $description = 'Command description';

    /**
     * Create a new command instance.
     *
     * @return void
     */
    public function __construct()
    {
        parent::__construct();
    }

    /**
     * Execute the console command.
     *
     * @return mixed
     */
    public function handle()
    {
        $manager = new MongoDB\Driver\Manager("mongodb://localhost:27017");
        $bulk = new MongoDB\Driver\BulkWrite();
        $bulk->insert(['test', 'data']);
        $writeConcern = new MongoDB\Driver\WriteConcern(MongoDB\Driver\WriteConcern::MAJORITY, 100);
        $manager->executeBulkWrite('test.test', $bulk, $writeConcern);
    }
}

php artisan testcommand(Kernel.phpで定義されています)で実行しようとすると、次のエラーが発生します。

  [MongoDB\Driver\Exception\BulkWriteException]
  BulkWrite error

それは非常に役に立たない一般的です。問題は何ですか?

4

0 に答える 0