search for: yaxm

Displaying 9 results from an estimated 9 matches for "yaxm".

Did you mean: yam
2007 Apr 16
5
AAF: merge search results
...s that belong to a user. so it''s going to be very tedious to add all the new accessor methods just for AAF. User.multi_search(''name:(california) state:(california) '', [Address, Task]) doesn''t return any instance. why is this not returning anything? Thanks. yaxm -- Posted via http://www.ruby-forum.com/.
2007 Apr 24
1
bitmask(bitwise operation) support in Ferret
...on.find_by_content(''role:(1))", I expect it to return person A. but this clearlly doesn''t work. Does Ferret support this kind of search? or do I have to build in inverted index as mentioned at http://www.mail-archive.com/general at lucene.apache.org/msg00372.html Thanks. Yaxm -- Posted via http://www.ruby-forum.com/.
2007 May 03
1
Numeric Range or comparision doesn''t work
...m:>2'') TopDocs: total_hits = 0, max_score = 0.000000 [ ] => nil According to the release note for Ferret 0.10.6 at http://rubyforge.org/forum/forum.php?forum_id=9058, "Range queries just work. No need to pad numbers or format dates correctly." Is this a new bug? Thanks. Yaxm -- Posted via http://www.ruby-forum.com/.
2007 May 29
1
is "IN" a special word?
...>> User.find_by_contents(''in'') => #<ActsAsFerret::SearchResults:0xb75fbbc8 @total_hits=0, @results=[]> so is "in" or "IN" a special word? What can I do to make them appear in my search result? Is there a list of all the special words? Thanks. Yaxm -- Posted via http://www.ruby-forum.com/.
2007 Apr 30
1
Can''t search fields with space
...#39;city:("cal\ poly")'') => #<ActsAsFerret::SearchResults:0x4e51a9c @total_hits=0, @results=[]> >> User.find_by_contents(''city:("cal poly")'') => #<ActsAsFerret::SearchResults:0x4e4f148 @total_hits=0, @results=[]> Please advise. Yaxm -- Posted via http://www.ruby-forum.com/.
2007 May 08
0
case sensitivity for untokenized fields
...e state field untokenized. It looks like Ferret doesn''t perform downcasing for these fields in the index. so the search can''t be done case-insensitively. how do I solve this problem? Downcase the indexed terms as well as the search value? Is there a simpler solution? Thanks. Yaxm -- Posted via http://www.ruby-forum.com/.
2007 Apr 22
0
rename error using rebuild_index in console after searching
...mize'' from ./script/../config/../config/../vendor/plugins/acts_as_ferret/lib/l ocal_index.rb:51:in `rebuild_index'' from ./script/../config/../config/../vendor/plugins/acts_as_ferret/lib/c lass_methods.rb:15:in `rebuild_index'' from (irb):3 Thanks. yaxm -- Posted via http://www.ruby-forum.com/.
2007 Jul 23
0
any restful client other than active_resource?
Hi, I am trying to consume a restful resource. I tried active_resource with rails 1.2.3, but it doesn''t work. so I assume that it only works with Edge Rails. Is there any other ruby-based restful client available? Thanks. Yaxm. -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gma...
2006 Sep 12
3
Querying against numeric fields? e.g. price:( >= min_price)
Using acts_as_ferret I''m trying to do a query like: active:(true) title|body:(#{params[:s]}) product_price:( >= #{params[:min]}) Where I want to return only the active products that contain the search term in the title or body and has a minimum price >= params[:min] I''m finding that even though I''m indexing the product price as an integer (so no .00 to cause