Re: Tips on adding a Couchbase backend

2015-06-14 Thread Götz Bürkle
Hi Mark, Maybe the work done to support Google App Engine and its Datastore could also be useful for you. You can find more information about that project on https://github.com/potatolondon/djangae and http://djangae.readthedocs.org/en/latest/db_backend/ Cheers, Goetz -- You received this messa

Re: Tips on adding a Couchbase backend

2015-06-14 Thread Aymeric Augustin
On 14 juin 2015, at 20:23, mnunberg...@gmail.com wrote: > It would only be worthwhile trying to make a proper database-engine if the > rest of django would support it: Specifically, any kind of data modification > using SQL is currently unsupported This is an well defined limitation. If you can

Re: Tips on adding a Couchbase backend

2015-06-14 Thread mnunberg740
Thanks for the advice. I imagine the emailer example is a way to show how to make something that’s not really a Django model into a Django model (similar to what Cassandra does). Interesting point about not supporting the ecosystem - but the question is how much of the ecosystem (rough estimate

Re: Tips on adding a Couchbase backend

2015-06-13 Thread Shai Berger
On Sunday 14 June 2015 00:13:33 Mark Nunberg wrote: > Hi folks! > > I apologize in advance if this is the wrong venue for this discussion > > I'm trying to determine the best means by which I might be able to add > Couchbase (http://www.couchbase.com) support to Django. I've come across > somethi

Re: Tips on adding a Couchbase backend

2015-06-13 Thread Tim Graham
There's nothing in the way of official documentation about writing third-party database backends. I guess the best approach would be to look through the source code of database engines in Django as well as the projects you mentioned and learn from that. If we can add any hooks to Django to help

Tips on adding a Couchbase backend

2015-06-13 Thread Mark Nunberg
Hi folks! I apologize in advance if this is the wrong venue for this discussion I'm trying to determine the best means by which I might be able to add Couchbase (http://www.couchbase.com) support to Django. I've come across something called "django-nonrel" - it seems to have scarce documentatio