 
                      
                 
                                 Search in Members
                       Search in Members
                    
                  Search in Members
                       Search in Members
                    
                  Search in Albums
                       Search in Albums
                    
                  Search in Photos
                       Search in Photos
                    
                  Search in Blog
                       Search in Blog
                    
                  Search in Businesses
                       Search in Businesses
                    
                  Search in Contests
                       Search in Contests
                    
                  Search in Events
                       Search in Events
                    
                  Search in Groups
                       Search in Groups
                    
                  Search in Music Albums
                       Search in Music Albums
                    
                  Search in Music Songs
                       Search in Music Songs
                    
                  Search in Pages
                       Search in Pages
                    
                  Search in Questions
                       Search in Questions
                    
                  Search in Quotes
                       Search in Quotes
                    
                  Search in Site Team
                       Search in Site Team
                    
                  Search in Recepies
                       Search in Recepies
                    
                  Search in Thoughts
                       Search in Thoughts
                    
                  Search in Videos
                       Search in Videos
                    
                  Search in Channels
                       Search in Channels
                    
                  Search in Wishes
                       Search in Wishes
                    
                  Search in Prayers
                       Search in Prayers
                    
                 asked by Jesper Audibert in Literature near The Victor Chang Cardiac Research Institute, Darlinghurst NSW, Australia on 28 May,2018
I configured a web site using django WSGI and Apache. Since several users can launch a request (lasting 30s) at the same time, I configured WSGI with multiple processes so that a user won't wait for other users requests to end by specifying processes=10:
WSGIDeamonProcess website processes=10 threads=1
WSGIProcessGroup website
WSGIApplicationGroup %{GLOBAL}
WSGIScriptAlias / /path/to/wsgi.py
It works well, but when the user makes a first request, he has to make a second one; both requests are launched in two different processes (pid), but I need them to be executed in the same process (because of a global variable that they share). Therefore, I thought about making all request of that user in the same process to solve this. Is there an Apache configuration option do to this: make all requests of a user in the same process (or sub-interpreter)?
 
  Choose a test user to login and take a site tour.
 
         
         
         
         
         
        Lorem Ipsum is simply dummy text of the printing and typesetting industry.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s.

