MongoDB
 sql >> Database >  >> NoSQL >> MongoDB

Persistere e svuotare - Dottrina e MongoDB

Ho creato un benchmark per profilare i flush di un semplice documento a due campi in varie dimensioni batch:https://gist. github.com/2725976

$ php src/benchmark.php 10 100 1000 10000 20000 50000 100000
Flushing     10 items took  0.014058 seconds and   2097152 bytes
Flushing    100 items took  0.024325 seconds and    524288 bytes
Flushing   1000 items took  0.196992 seconds and   5505024 bytes
Flushing  10000 items took  2.563700 seconds and  57933824 bytes
Flushing  20000 items took  6.291873 seconds and  89915392 bytes
Flushing  50000 items took 19.118011 seconds and 240386048 bytes
Flushing 100000 items took 58.582809 seconds and 469499904 bytes

Come ci si potrebbe aspettare, l'inserimento effettivo dei dati in Mongo rappresenta solo una piccola parte di queste misurazioni. Doctrine impiegherà un bel po' di tempo a esaminare passaggi come l'invio di eventi e il calcolo del set di modifiche, l'ultimo dei quali sarà notevolmente influenzato dalla complessità del modello del tuo dominio.

Puoi tracciare tutte le operazioni specifiche di Dottrina in flush() dando un'occhiata a UnitOfWork::commit() .