Files
mongo/jstests/dur/indexbg.js
2011-03-18 01:58:55 -07:00

8 lines
243 B
JavaScript

path = '/data/db/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();