Created
September 16, 2015 13:47
-
-
Save xboston/9f55775a662dbef8e561 to your computer and use it in GitHub Desktop.
rethinkdb vs mongodb performance
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"""Compares rethinkdb with mongo. | |
""" | |
import copy | |
import pymongo | |
import rethinkdb as r | |
import time | |
mc = pymongo.Connection() | |
rc = r.connect() | |
mc.drop_database('test') | |
r.db_drop('test').run(rc, noreply = True) | |
r.db_create('test').run(rc) | |
r.db('test').table_create('test').run(rc) | |
mcol = mc['test']['test'] | |
rcol = r.db('test').table('test') | |
_docs = [ { 'val': i, 'count': 8, 'data': [ 1, 2, 3, 4, 5 ] * 20 } | |
for i in range(1000) ] | |
mdocs = copy.deepcopy(_docs) | |
rdocs = copy.deepcopy(_docs) | |
def timeit(c, l): | |
a = time.time() | |
l() | |
print("{}: {}".format(c, time.time() - a)) | |
timeit("mongodb", lambda: mcol.insert(mdocs, safe = True)) | |
timeit("rethink", lambda: rcol.insert(rdocs).run(rc)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment