Skip to content

Instantly share code, notes, and snippets.

@itayw
Created November 13, 2014 14:08
Show Gist options
  • Save itayw/c4ebfc0367ab7c8649b6 to your computer and use it in GitHub Desktop.
Save itayw/c4ebfc0367ab7c8649b6 to your computer and use it in GitHub Desktop.
ReDB quick load test
var r = require('rethinkdb');
var i = 0;
var document = {
timestamp: new Date(),
username: 'username',
value: 123
};
r.connect(function (err, conn) {
var i = 0;
while (true){
console.log('pushed', ++i);
r.db('joola').table('testingspeed').insert(document).run(conn);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment