Add note to item-pipeline documentation explaining order in the ITEM_PIPELINES setting.

This commit is contained in:
Brian Lange 2013-11-19 16:12:54 -06:00
parent 2d91c7136d
commit b878f60b5a
1 changed files with 4 additions and 0 deletions

View File

@ -138,3 +138,7 @@ 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. It's customary to define them in the 0-1000 range.