Merge pull request #465 from bjlange/master

Add note to item-pipeline documentation explaining order
This commit is contained in:
Mikhail Korobov 2013-11-20 09:40:19 -08:00
commit 8416cc7515
1 changed files with 5 additions and 0 deletions

View File

@ -138,3 +138,8 @@ To activate an Item Pipeline component you must add its class to the
'myproject.pipeline.PricePipeline': 300,
'myproject.pipeline.JsonWriterPipeline': 800,
}
The integer values you assign to classes in this setting determine the
order they run in- items go through pipelines from order number low to
high. It's customary to define these numbers in the 0-1000 range.