oops: set flex config.hangers_enabled before the line that checks for its presence

This commit is contained in:
Emi Matchu 2013-06-11 11:22:17 -07:00
parent 0d348d6971
commit 349a83123c

View file

@ -2,14 +2,15 @@
Flex::Configuration.configure do |config|
# If queries like "user:owns" are too much for the server to handle (not
# enough RAM?), set to false to stop indexing closet hangers and disable
# item queries that reference them.
config.hangers_enabled = true
# you MUST add your indexed model names here
config.flex_models = %w[ Item ]
config.flex_models << 'ClosetHanger' if config.hangers_enabled
# If queries like "user:owns" are too much for the server to handle (not
# enough RAM?), set to false to stop indexing closet hangers and disable
# item queries that reference them.
config.hangers_enabled = true
# Add the your result extenders here
config.result_extenders |= [ FlexSearchExtender ]