Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

14
votes
8answers
4k views

Is there a pure Python Lucene?

The ruby folks have Ferret. Someone know of any similar initiative for Python? We're using PyLucene at current, but I'd like to investigate moving to pure Python searching.
3
votes
2answers
742 views

Garbage collection with Ruby C Extension

I am working my way through Ferret (Ruby port of Lucene) code to solve a bug. Ferret code is mainly a C extension to Ruby. I am running into some issues with the garbage collector. I managed to fix ...
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
0answers
52 views

Finding á, à, etc characters with ferret in rails

I have a rails project with ferret working on it. Also I have some tables with french and spanish names in there. That contains characters like: á, à. ü, etc. When I made a search I only use common ...
2
votes
3answers
759 views

How to install ferret gem on Windows 7?

I was trying to run an OpenSource project which requires ferret to be installed. While installing it using gem install ferret, it's giving this error -> Building native extensions. This could ...
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
0answers
307 views

Errno::EEXIST File Exists error when installing 'ferret' gem from local .gem file

I am trying to install the ferret ruby gem on a RHEL zlinux (s390x architecture) machine, and am trying to install a .gem file after patching it so that it will compile. But even trying to install ...
1
vote
3answers
226 views

Is Ferret stable enough to use in production?

Ferret the ruby implementation of lucene is reasonably powerful, however online discussions in 2008 seemed to indicate ferret had many stability issues and would segfault regularly. There have been 10 ...
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
29 views

Rails 3 does not find ferret drb server

I'm trying to use the ferret drb server in my rails 3 app but it just keep using local index, the server is up running but the application just wont use it. I think it can relate to this but I'm not ...
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
0answers
127 views

error installing ferret

i am trying to install the ferret gem. It is showing me the following error : C:\Ruby>gem install ferret -v 0.11.6 Building native extensions. This could take a while... ERROR: Error installing ...
0
votes
1answer
236 views

Can't install ‘ferret’ gem on Mac OS X Snow Leopard

I can't install the ferret gem in my computer with: gem install ferret Here is the error: macbookpro:tehago davidpombarlourido$ sudo gem install ferret Password: Building native extensions. This ...
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
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
1answer
106 views

Using Ferret to build unique tag clouds

I've been using Ferret as my full-text search engine in a small project I'm working on. Through the documentation and a few examples online, i've been able to pull together a tag cloud generator ...
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
1answer
68 views

What associations should I use to be able to sort search results by an associated model in a rails app?

I'm currently writing an app that pulls all the tweets from twitter with links in them and puts them into our searchable database. Our database tables look like this: Tweets content tweet_id ...
0
votes
2answers
382 views

“Cannot add array to BooleanQuery” error with ferret on rails

I'm trying to get a simple search form working in my RoR site. I've got the following code: (in note_controller.rb) def search @results = ...