Created
September 5, 2012 14:28
Revisions
-
manfre revised this gist
Sep 6, 2012 . 1 changed file with 2 additions and 49 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,50 +1,3 @@ Moved to `http://manfre.github.com/talk-process-apache-windows/`_ .. _`http://manfre.github.com/talk-process-apache-windows/`: http://manfre.github.com/talk-process-apache-windows/ -
manfre revised this gist
Sep 5, 2012 . 1 changed file with 1 addition and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -18,6 +18,7 @@ What's Wrong With Threads? .. _`http://www.dabeaz.com/GIL/`: http://www.dabeaz.com/GIL/ - All sites are IO heavy - Network -> Cache -> Database -> Disk -> Network ---- -
manfre revised this gist
Sep 5, 2012 . 1 changed file with 1 addition and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -27,6 +27,7 @@ How To Fake It? - Web farm on a box (many Apaches) - Load balancer - mod_proxy_balancer (on the box) - HAProxy - ... -
manfre revised this gist
Sep 5, 2012 . 1 changed file with 5 additions and 4 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -15,20 +15,21 @@ What's Wrong With Threads? - "Understanding the GIL" - David Beazley `http://www.dabeaz.com/GIL/`_ .. _`http://www.dabeaz.com/GIL/`: http://www.dabeaz.com/GIL/ - All sites are IO heavy - Network -> Cache -> Database -> Disk -> Network ---- How To Fake It? --------------- - Web farm on a box (many Apaches) - Load balancer - mod_proxy_balancer (on the box) - HAProxy - ... - Benefit: Forces you to plan for scaling @@ -41,7 +42,7 @@ If you have ideas, please contact me. Michael Manfre manfre on Bitbucket | Github | Freenode ---- -
manfre revised this gist
Sep 5, 2012 . 1 changed file with 2 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -30,6 +30,8 @@ How To Fake It? - mod_proxy_balancer (on the box) - HAProxy - Benefit: Forces you to plan for scaling ---- Is There A Better Way? -
manfre revised this gist
Sep 5, 2012 . 1 changed file with 5 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -13,7 +13,7 @@ What's Wrong With Threads? - GIL says "Good luck with that" - "Understanding the GIL" - David Beazley `http://www.dabeaz.com/GIL/`_ - Newer HTTP requests lag previous requests @@ -27,6 +27,9 @@ How To Fake It? - Web farm on a box (many Apaches) - Load balancer - mod_proxy_balancer (on the box) - HAProxy ---- Is There A Better Way? @@ -36,7 +39,7 @@ If you have ideas, please contact me. Michael Manfre manfre on Bitbucket | Github | IRC ---- -
manfre revised this gist
Sep 5, 2012 . 1 changed file with 22 additions and 6 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,11 +1,6 @@ Faking a Process based Apache MPM on Windows ============================================ mpm_winnt --------- @@ -17,10 +12,31 @@ What's Wrong With Threads? -------------------------- - GIL says "Good luck with that" - "Understanding the GIL" - David Beazley `http://www.dabeaz.com/GIL/`_ - Newer HTTP requests lag previous requests .. _`http://www.dabeaz.com/GIL/`: http://www.dabeaz.com/GIL/ ---- How To Fake It? --------------- - Web farm on a box (many Apaches) - Load balancer ---- Is There A Better Way? ---------------------- If you have ideas, please contact me. Michael Manfre manfre on IRC | Bitbucket | Github | IRC ---- -
manfre revised this gist
Sep 5, 2012 . 1 changed file with 15 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,12 +1,26 @@ Faking a Process based Apache MPM on Windows ============================================ Michael Manfre manfre on (IRC|Bitbucket|Github|IRC) mpm_winnt --------- - One process, many threads ---- What's Wrong With Threads? -------------------------- - GIL says "Good luck with that" - "Understanding the GIL" - `http://www.dabeaz.com/GIL/`_ - Newer HTTP requests lag previous requests .. _`http://www.dabeaz.com/GIL/`: http://www.dabeaz.com/GIL/ ---- -
manfre created this gist
Sep 5, 2012 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,12 @@ Faking a Process based Apache MPM on Windows ============================================ mpm_winnt --------- - One process, many threads - GIL says "Good luck with that" - Newer HTTP requests act as anchor for previous requests. ----