This repository has been archived by the owner on May 1, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f76e5be
commit b8f6bb7
Showing
2 changed files
with
7 additions
and
1 deletion.
There are no files selected for viewing
This file contains 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 characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
python-staticgenerator (1.4.1) experimental; urgency=low | ||
|
||
* New upstream release | ||
|
||
-- Gabriel Falcão Gonçalves de Moura <[email protected]> Tue, 27 Oct 2009 16:03:49 -0200 | ||
|
||
python-staticgenerator (1.3.6) experimental; urgency=low | ||
|
||
* New upstream release | ||
|
This file contains 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 characters
b8f6bb7
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why to bother with such kind of static generation if you could just cache whole views in Django?
b8f6bb7
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Django introduces overhead. If you were to use Nginx in front of Django and Nginx could simply use sendfile(2) then you have a dramatic speed increase.
As you can see on the graph on this page with Django's cache I was able to get up to 500 requests per second. With a static file that number increased to 7,000 requests per second.