Changeset 264
- Timestamp:
- 11/14/07 09:22:09 (1 year ago)
- Files:
-
- trunk/demo/app/models/comment.rb (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/demo/app/models/comment.rb
r263 r264 16 16 acts_as_ferret( :store_class_name => true, 17 17 :remote => ENV['AAF_REMOTE'] == 'true', # for testing drb remote indexing 18 :additional_fields => { 19 :added => { :index => :untokenized, :store => :yes, :ignore => true } 18 :fields => { 19 :content => { :store => :yes }, 20 :author => { }, 21 :added => { :index => :untokenized, :store => :yes, :ignore => true } 20 22 }, :ferret => { :analyzer => Ferret::Analysis::StandardAnalyzer.new(['fax', 'gsm', 'the', 'or']) } ) 21 23
