Hi Alex

Thanks a lot for your considerable answer. Yeah, I probably can not avoid
it to (pre-) build up my own 'test' environment and check the performance
for my needs.

Cheers
-Urs
Am 21.08.2013 19:39 schrieb "Alex Mandel" <tech_...@wildintellect.com>:

> On 08/21/2013 10:10 AM, urs.beerli wrote:
> > Hi folks!
> >
> > I am pretty new to Django and what I have seen so far is very nice, I
> like
> > it a lot! But one of the most important things to me of a web framework
> is
> > the performance. If you take a look at:
> > http://www.techempower.com/benchmarks/#section=data-r6&hw=i7&test=update
> > Django scores not that good (almost in every test). What are the reasons?
> >
> > Thanks
> > - Urs
> >
>
> Interesting question. Of course all benchmarks tend to be quite
> subjective as to testing strengths vs weakness. Some things I see, for
> django they used Postgres but for everything else they used Mysql and
> its not clear to me if those DB hits are cold start or not. We also have
> no idea if the indexes are the same, what tables types are in use and I
> assume the db configuration is stock.
>
> Wsgi they used gunicorn, but we have no idea the configuration of it and
> UWSGI is considered much faster than gunicorn (which is actually
> considered reasonably faster than apache mod wsgi)
>
> Also you need to compare only frameworks of the same type, Django's
> strength is in its completeness, of course some other frameworks will be
> faster because they are simpler. Many people consider Rails the biggest
> competitor to Django (feature and usage wise), if you limit your
> comparison to that Django looks quite good.
>
> The reality is you need to make a django app for yourself and see if it
> handles the load you want it to handle fast enough for you. At that
> point then look for something else. If all your page returns are fast
> enough that the user doesn't really notice and it can handle the number
> of concurrent users you want, that's all that really matters.
>
> If you really care about it just being as fast as possible, you should
> probably be writing it all from scratch or in a minimal framework with
> compile optimized code (C++ perhaps).
>
> Enjoy,
> Alex
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To post to this group, send email to django-users@googlegroups.com.
> Visit this group at http://groups.google.com/group/django-users.
> For more options, visit https://groups.google.com/groups/opt_out.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to