Skip to content

Commit

Permalink
+ partial example in prototype project
Browse files Browse the repository at this point in the history
  • Loading branch information
floere committed Sep 29, 2010
1 parent 8b10192 commit 02e42fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/prototype_project/app/application.rb
Expand Up @@ -25,7 +25,7 @@ class PickySearch < Application # The App Constant needs to be identical in appl
),
field(:title, :qualifiers => [:t, :title, :titre], :similarity => Similarity::DoubleLevenshtone.new(3)), # Up to three similar title word indexed.
field(:author, :qualifiers => [:s, :author, :auteur]),
field(:isbn, :qualifiers => [:i, :isbn])
field(:isbn, :qualifiers => [:i, :isbn], :partial => Partial::None.new) # Partially searching on an ISBN makes not much sense.
end

queries do
Expand Down

0 comments on commit 02e42fa

Please sign in to comment.