Tagged Questions
The acts-as-ferret tag has no wiki summary.
2
votes
0answers
63 views
How to run ferret (acts_as_ferret) with jruby?
I have an existing project, which uses the "acts_as_ferret" gem.
I installed it (and the other required gems) and tried to run the db-migration script.
I get the following error:
...
2
votes
2answers
320 views
delayed_job talking to acts_as_ferret via drb server results in a closed stream error
I'm using delayed_job to process some files and then create some activerecord objects with the results. The activerecord objects are being indexed with acts_as_ferret which is running as a drb ...
1
vote
3answers
146 views
Rails: find_by_contents with conditions; syntax help please
Looking to limit a find based on conditions in a Rails 2.0.2.
Find statement:
@employees = Employee.find_by_contents(params[:keywords].to_s, :include => [ :categories, :revisions, :approvals, ...
1
vote
1answer
153 views
acts_as_ferret with German umlauts
I managed to setup my app with a search based on acts_as_ferret. Overall it works fine. But I can't find results for words with umlauts (e. g. “Getränke”).
I added this to my environment.rb and ...
1
vote
1answer
310 views
acts_as_ferret not searching at all
I am trying get acts_as_ferret working in my rails applications. I have installed the ferret gem. Installed the acts_as_ferret plugin.
This is what my model looks like now.
class User < ...
0
votes
1answer
39 views
acts_as_ferret - how to limit a search to a small number of fields?
I have a model School which is ferret-indexed on 10 or 12 different indexes.
In one particular search, i want to return only schools which match the search term in one of the following fields: ...
0
votes
0answers
8 views
acts_as_ferret creating indexes owned by root rather than a low privilege user
I have a rails app that uses acts_as_ferret as the index engine (upgrade to Sphinx is a couple of months away).
Whenever a record is updated that affects the index the index is updated correctly with ...
0
votes
2answers
86 views
Ferret search not working for my rails app
First, I logged into the ruby script/console -e production and tried to index each table using
Model.rebuild_index
It worked fine and returned true
I then started the ferret server using the ...
0
votes
1answer
165 views
How do I install acts_as_ferret in Windows XP?
I cannot install Acts As Ferret in Windows XP. My development environment is,
RubyGems - 1.7.2
Ruby - 1.8.7
devkit - 4.5.1
When I ran the command gem install acts_as_ferret, I got the error ...
0
votes
1answer
399 views
Installing ferret and acts_as_ferret
I'm looking for a solid walkthrough or some direction on getting ferret set up on my rails server. Everyone on the internet makes it seem so easy, but I can't seem to get it all together.
What I've ...
0
votes
1answer
310 views
How rebuild index with acts_as_ferret?
I am using acts_as_ferret(0.4.3) to do full-text searching, but when update index I need to restart
ferret, so is there any good method to make it update automatic? thanks!
0
votes
1answer
17 views
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!
0
votes
2answers
151 views
Docs or tutorial for “acts_as_ferret”
I've been searching the internet without success, looking for info on acts_as_ferret. The few pages I've found show methods that apparently doesn't exist any more (my rails app show me the "method not ...
0
votes
1answer
68 views
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'
...
0
votes
1answer
120 views
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 ...
0
votes
2answers
55 views
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 ...
0
votes
1answer
238 views
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 ...
0
votes
1answer
435 views
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 ...
0
votes
1answer
267 views
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?'
...
0
votes
2answers
524 views
Is ruby on rails plugin, acts_as_ferret, very buggy?
I am doing a very simple search on my DB using acts_as_ferret. I put this in my "Venue" model:
acts_as_ferret :fields => [:name, :city]
And this is in my controller search action:
@t = ...