MongoDB
 sql >> Teknologi Basis Data >  >> NoSQL >> MongoDB

Menggunakan Async dengan MongoDb untuk mengisi dokumen koleksi secara berurutan

insertRowInBLD Anda fungsi harus mengembalikan Promise contoh alih-alih undefined seperti sekarang. Async.series sedang melewati larik undefined .

Ini.

function fillBLD() {
    async.series(
        [
            insertRowInBLD('R01', 'Disclosure of data due to deliberate action by internal actor', 'E. Not significant', 'Partially effective', 'Low', '', '', '', ''),
            insertRowInBLD('R02', 'Corruption of data due to deliberate action by internal actor', 'E. Not significant', 'Partially effective', 'Low', '', '', '', ''),
            insertRowInBLD('R03', 'Unavailability of data due to deliberate action by internal actor', 'E. Not significant', 'Partially effective', '', '', '', '', ''),
            insertRowInBLD('R04', 'Disclosure of data due to attack of the communications link by internal/external actor', 'E. Not significant', 'Partially effective', 'Low', '', '', '', ''),
            insertRowInBLD('R05', 'Corruption of data due to attack of the communications link by internal/external actor', 'E. Not significant', 'Partially effective', 'Low', '', '', '', ''),
        ]
    );
}

sebenarnya ini.

function fillBLD() {
    async.series(
        [
            undefined,
            undefined,
            undefined,
            undefined,
            undefined
        ]
    );
}



  1. Redis
  2.   
  3. MongoDB
  4.   
  5. Memcached
  6.   
  7. HBase
  8.   
  9. CouchDB
  1. Membangun Newsfeed seperti Facebook yang dipersonalisasi:SQL, MongoDB?

  2. Cara mengelompokkan dokumen dengan bidang tertentu dalam agregasi mongodb

  3. Bagaimana menemukan perbedaan jam antara dua tanggal di mongodb

  4. Validasi unik luwak tidak berfungsi. Entri duplikat disimpan

  5. Bagaimana urutan indeks gabungan penting dalam kinerja MongoDB?