Reputation: 51
I have followed various posts and tutorials but couldn't find anything that is relevant. I found a ORM for rethinkdb "https://github.com/dparlevliet/rwrapper" but don't know how to use it? I am new to to django and python.
Upvotes: 5
Views: 3570
Reputation: 3488
Django doesn't support RethinkDB at the moment and I don't think there's any plan for it as well. Django developers don't add new stuff to the code base just because it's something new and might be cool. It should be really well mature and a high needs for it. So, I don't think you'll be hearing anything about RethinkDB from Django devs anytime soon.
This project might be something interesting: https://github.com/thejsj/django-and-rethinkdb
In order to use any database with Django, the adapter should completely be a Django DB Backend in order to work with:
In others words, as long as the db backend doesn't support all the django database operations is not something that you wanna use.
Upvotes: 1
Reputation: 802
It depends on what you want to do.
import rethinkdb as r
and r.connect()
and then just write queries with ReQL.Upvotes: 2