Re: Possible interest in a webcast/presentation about Django site with 40mil+ rows of data??

2011-06-24 Thread Nolan Brubaker
Yes, very interested. +1 On Fri, Jun 24, 2011 at 9:04 AM, bruno desthuilliers < bruno.desthuilli...@gmail.com> wrote: > +1 > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To post to this group, send email to django-users@googlegroups.c

Re: Django Development Environments

2011-06-06 Thread Nolan Brubaker
Dev: OS X 10.6 MacVim virtualenv/pip TDD (unit test), bundled Django dev server Production: RHEL 5.5, 6.0 Apache for static files mod_wsgi Xavier, could you point to any resources about using buildout with Django, virtualenv and pip? I'm assuming you're using it to deploy things into productio

Re: Model Question

2011-02-28 Thread Nolan Brubaker
I'm not sure about your first question; I've never tried overriding a field in a subclass. For your second question are you trying to check on the whole query set, or an individual model instance? If you're checking on an individual model instance, you can use hasattr() like: if hasattr(instan

Re: Python/Django AMQP?

2011-02-28 Thread Nolan Brubaker
+! for Celery, though I haven't used it with django-celery yet. Soon will, though. On Feb 24, 2011, at 11:58 AM, Brian Bouterse wrote: > +1 for Celery and django-celery. I use them also. > > On Thu, Feb 24, 2011 at 9:07 AM, Shawn Milochik wrote: > +1 on Celery and django-celery. I use them b