Questions tagged [acts-as-ferret]

This ActiveRecord mixin adds full text search capabilities to any Rails model.

Acts_as_ferret is a plugin for Ruby on Rails which makes it simple to implement full text search for Rails. It builds on Ferret which is a ruby port of Apache Lucene. It is a technology suitable for nearly any application that requires full-text search.

Wiki: http://wiki.github.com/jkraemer/acts_as_ferret/

24 questions
0
votes
1 answer

problem with case sensitivity in acts_as_ferret

I have a problem with case sensitivity - basically, searches only work when they are lowercase: even when it looks like the text stored in the index is uppercase. How to deal with this, thanks!
why
  • 23,923
  • 29
  • 97
  • 142
0
votes
1 answer

the ferret error in rails project

I use the plugin of acts_as_ferret. when i use find_with_ferret,i got this problem.I got the error messages from the console like this EOFError in 'DestroysController save destroy require reason' End-of-File Error occured at :117 in…
Small Wolf
  • 283
  • 4
  • 17
0
votes
1 answer

need help with acts_as_ferret and will_paginate to play nice together

I have installed will_paginate and acts_as_ferret on my system for ruby rails. My paginate seems to work fine before installing acts_as_ferret. When I put in the code to do searching I get the following error: NoMethodError in Community#search …
0
votes
0 answers

No search results with act_as_ferret

I have this line on box model acts_as_ferret :fields => [ :model ] of course, box table has a field named model. this is the search action or the catalog controller def search @page_title = "Busqueda" if params[:commit] == "Search"…
user3447780
  • 97
  • 1
  • 6
0
votes
2 answers

acts_as_ferret with multiple hosts

I've got everything working with ferret and acts_as_ferret for development (or localhost DRb), but I can't get my multiple host deployment working. All of the remote systems get ECONNREFUSED when accessing the port. On the ferret server, the…
Nick
  • 2,393
  • 13
  • 22
0
votes
1 answer

acts_as_ferret multi model search not working in rails app

I am trying to solve a strange issue with ferret/acts_as_ferret Of course I have googled and posted the question: http://www.ruby-forum.com/topic/188570 Basically aaf works on single models with no issue. It also works on single models using the…
Spasm
  • 805
  • 9
  • 17
0
votes
1 answer

Clean install of Ubuntu Karmic, Ruby 1.8.7 (2009-04-08 patchlevel 160), jkraemer-acts_as_ferret (0.4.4), Rails 2.3.4 -- Errors with AAF

I have a fresh install of Ubuntu Karmic, Ruby and Rails. I checkout out a working (production) application. Created the databases and ran the rake tasks. Made sure I had all the required gems of which acts_as_ferret by Jens Krämer was one of…
Piper
  • 35
  • 2
0
votes
1 answer

DelayedJob with acts_as_ferret in production mode

I get the following error when I run my task via DelayedJob: closed stream /usr/lib/ruby/1.8/drb/drb.rb:961:in `select' /usr/lib/ruby/1.8/drb/drb.rb:961:in `alive?' /usr/lib/ruby/1.8/drb/drb.rb:1211:in `alive?' /usr/lib/ruby/1.8/drb/drb.rb:1168:in…
Gautam Rege
  • 697
  • 6
  • 12
0
votes
2 answers

Advice with Full Text Search Engine in Rails

I am trying to add to my website a search bar like the one on Facebook. I want my users to be able to search through my products, my other users ... But I also want the result to be displayed in real time without pressing a button. I am currently…
1
2