blob: 71df92a41f677fcb3c748d60a69778daf96c8648 (
plain)
1
2
3
4
5
6
7
|
path = MongoRunner.dataDir + '/indexbg_dur';
m = startMongodEmpty( '--port', 30001, '--dbpath', path, '--journal', '--smallfiles', '--journalOptions', 24 );
t = m.getDB( 'test' ).test;
t.save( {x:1} );
t.createIndex( {x:1}, {background:true} );
t.count();
|