Re: Django + MongoDB

2020-09-26 Thread yaamoussa-solution
yes you use this tuto https://bezkoder.com/django-mongodb-crud-rest-framework/.don't forget mlabmongo module is changed for atlas mongo .you can visite this url : https://devcenter.heroku.com/changelog-items/1823 Le jeu. 23 juil. 2020 à 16:01, Anh Nguyen a écrit : > Nightmares > > On Thu, Jul 23

Re: Django + MongoDB

2020-07-23 Thread Anh Nguyen
Nightmares On Thu, Jul 23, 2020 at 20:38 Akshat Gupta wrote: > Hello, > > Ok, first of all, I think Django is really built for Relational databases. > Django ORM fits and works really well for RDBMS. However, the app which I > am building requires MongoDB as a database. I really tried but all my

Re: Django-MongoDb deployment at production servert

2012-12-11 Thread Chuck James
Really in-depth reply with fair option :) thanks, Seems, I should take a dedicated web server and then start implementing it with Gunicorn (will try first, then I may move to apache). Now I need to read how to deploy django with Gunicorn/apache. Thanks. On Tue, Dec 11, 2012 at 2:24 PM, yati saga

Re: Django-MongoDb deployment at production servert

2012-12-11 Thread yati sagade
A webserver written in Python is almost certainly something you don't want for production as frankly, Python in its current form is just not suited for that. You can try Tornado, though, which is a pure Python non-blocking webserver that seems to be very scalable. The "best" way - you can arrive a

Re: Django-MongoDb deployment at production servert

2012-12-11 Thread Chuck James
Thanks for the reply guys :). The reason, I am mentioning the DB here, is that MongoDb is not a relational database, so when one will tell me the Django deployment, he should keep non relational database in mind. Other point, deployment without any common web server (apache/nginx) because pyt

Re: Django-MongoDb deployment at production servert

2012-12-11 Thread yati sagade
Hi Whether your database should live on a separate server or not is a question you can best answer by testing various configurations out depending on the load your app expects. As for the webserver, you can (and probably should) do away with Apache, and try GUnicorn, which is a great WSGI webserver

Re: Django-MongoDb deployment at production servert

2012-12-11 Thread Sam Solomon
I'm guessing that the problem is there are many ways to deploy Django so it's hard for anyone to give a good one-size-fits-all answer and also hard to run down the complete list of possibilities, and I'm guessing that since this list is only viewed by a small percentage of Django users, that the

Re: Django-MongoDb deployment at production servert

2012-12-10 Thread Chuck James
Really no one have Answer for this post, how people running big website using django, if no body knows how to deploy it. On Monday, December 10, 2012 12:32:29 PM UTC-5, Chuck James wrote: > > Hi, > > I am developing a website using Django and MongoDb ( > http://django-mongodb.org/). I h

Re: Django MongoDB

2012-11-26 Thread Victor Manuel Quiñones Victor
Hi guys thank you Yati, this really help me. Will check right away. Cheers On Mon, Nov 26, 2012 at 2:32 AM, yati sagade wrote: > Hi. I've used django-nonrel for interfacing with the Google datastore on > appengine and I use mongoengine for the rest. I guess mongoengine is the > recommended way

Re: Django MongoDB

2012-11-25 Thread yati sagade
Hi. I've used django-nonrel for interfacing with the Google datastore on appengine and I use mongoengine for the rest. I guess mongoengine is the recommended way to work with mongodb on django. I've set up a small example, a Twitter clone that uses mongoengine. The app can be deployed on OpenShift,

Re: Django MongoDB

2012-11-25 Thread Carlos Aguilar
You know which mongoengine and django-nonrel are 2 different libraries for mongodb??? Please select one and use it, but not both. Best Regards -- Carlos Aguilar Consultor Hardware y Software DWD&Solutions http://www.dwdandsolutions.com http://www.houseofsysadmin.com Cel: +50378735118 USA: (301)

Re: Django-MongoDB

2009-12-26 Thread Peterle
so, what about GAE\BigTables? How far are we from that? On 26 Dic, 10:59, Daniel Roseman wrote: > On Dec 26, 12:20 am, RackFeed wrote: > > > Has anybody tried using django-mongodb? What were your impressions? > > How well/poorly does the ORM work with mongodb? > > > I'm tired of