File tree Expand file tree Collapse file tree 1 file changed +27
-0
lines changed Expand file tree Collapse file tree 1 file changed +27
-0
lines changed Original file line number Diff line number Diff line change @@ -148,6 +148,33 @@ A list of filters that will be applied to javascript.
148
148
The dotted path to a Django Storage backend to be used to save the
149
149
compressed files.
150
150
151
+ ``COMPRESS_REBUILD_TIMEOUT ``
152
+ ----------------------------
153
+
154
+ :Default: ``2592000 `` (30 days in seconds)
155
+
156
+ The period of time after which the the compressed files are rebuilt even if
157
+ no file changes are detected.
158
+
159
+ ``COMPRESS_MINT_DELAY ``
160
+ ------------------------
161
+
162
+ :Default: ``30 `` (seconds)
163
+
164
+ The upper bound on how long any compression should take to run. Prevents
165
+ dog piling, should be a lot smaller than ``COMPRESS_REBUILD_TIMEOUT ``.
166
+
167
+
168
+ ``COMPRESS_MTIME_DELAY ``
169
+ ------------------------
170
+
171
+ :Default: ``None ``
172
+
173
+ The amount of time (in seconds) to cache the result of the check of the
174
+ modification timestamp of a file. Disabled by default. Should be smaller
175
+ than ``COMPRESS_REBUILD_TIMEOUT `` and ``COMPRESS_MINT_DELAY ``.
176
+
177
+
151
178
Dependecies
152
179
***********
153
180
You can’t perform that action at this time.
0 commit comments