Yes and no.

If you deploy your django project using nginx and uwsgi fur example and
multiple users make requests at the same time they will receive answers in
parallel, so yes it will be processed in parallel.

But no, django is not the one handling the parallelism, static requests are
handled by nginx and django may never know that such a request was made.
uwsgi will create a number of workers depending on your configuration that
will worry about the parallelism.

But I wouldn't call it parallel in the pure sense of the computer science
concept, but at least the requests will not wait for one another, they are
not served sequentially.

As for the 1k requests that will depend on your server hardware, deploy
configuration and nature of the requests, but that shouldn't be hard to
achieve.

Good luck
Avraham

On Sat, Feb 20, 2016, 6:40 PM wang sheng <wans...@gmail.com> wrote:

> Hi, guys:
>    I am new for django (   also new for web development ) ,  if there are
>  one thousand http request to  django server simultaneously ,  will Django
> parallel  process these request or not ?
>
> --
> 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 https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CA%2BmnDnoQOo%2BBSKiKWF8-Puc0vPi%3Ds4N4tJVyQtesbSjFSrtJ%3DA%40mail.gmail.com
> <https://groups.google.com/d/msgid/django-users/CA%2BmnDnoQOo%2BBSKiKWF8-Puc0vPi%3Ds4N4tJVyQtesbSjFSrtJ%3DA%40mail.gmail.com?utm_medium=email&utm_source=footer>
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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 https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAFWa6tKFvGQ4V_z5ZTi6ScvfP12KvB97GsqCDoVhc7bhFU5_5g%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to