I may have run across a bug in Ferret: if throws a segmentation fault
when I try to create a Sort object using the default fields (SCORE and
DOC_ID), but setting reverse to true.
Here's the minimal example:
#!/usr/bin/env ruby
require 'rubygems'
require 'ferret'
Ferret::Search::Sort.new
Ferret::Search::Sort.new(
[
Ferret::Search::SortField::SCORE,
Ferret::Search::SortField::DOC_ID
],
false
)
Ferret::Search::Sort.new(
[
Ferret::Search::SortField::SCORE_REV,
Ferret::Search::SortField::DOC_ID_REV
],
false
)
Ferret::Search::Sort.new(
[
Ferret::Search::SortField::SCORE,
Ferret::Search::SortField::DOC_ID
],
true
)
You should get something like this when creating the last object:
$ruby sort.rb
sort.rb:23: [BUG] Segmentation fault
ruby 1.8.6 (2007-09-24) [x86_64-linux]
Aborted
Again, this is with Ferret 0.11.6 in Linux.
Is this a known problem that's being worked on, or should I report it
at the Trac tool on ferret.davebalmain.com?
--
Bira
http://compexplicita.wordpress.com
http://compexplicita.tumblr.com
on 2008-03-01 03:29
on 2008-03-02 18:10
Hi, this works fine for me with 0.11.6 with stock Ubuntu and Debian Ruby versions: ruby 1.8.6 (2007-06-07 patchlevel 36) [i486-linux] (Ubuntu 7.10) ruby 1.8.5 (2006-08-25) [x86_64-linux] (Debian 4.0 (stable)) irb(main):001:0> require 'ferret' => true irb(main):002:0> Ferret::Search::Sort.new( irb(main):003:1* [ irb(main):004:2* Ferret::Search::SortField::SCORE, irb(main):005:2* Ferret::Search::SortField::DOC_ID irb(main):006:2> ], irb(main):007:1* true irb(main):008:1> ) => Sort[<SCORE>!, <DOC>!] irb(main):009:0> Ferret::VERSION => "0.11.6" Cheers, Jens On Fri, Feb 29, 2008 at 11:19:30PM -0300, Bira wrote: > Ferret::Search::Sort.new > [ > ], > > _______________________________________________ > Ferret-talk mailing list > Ferret-talk@rubyforge.org > http://rubyforge.org/mailman/listinfo/ferret-talk > -- Jens Krämer webit! Gesellschaft für neue Medien mbH Schnorrstraße 76 | 01069 Dresden Telefon +49 351 46766-0 | Telefax +49 351 46766-66 kraemer@webit.de | www.webit.de Amtsgericht Dresden | HRB 15422 GF Sven Haubold
on 2008-03-03 11:59
On Sun, Mar 2, 2008 at 2:10 PM, Jens Kraemer <kraemer@webit.de> wrote: > Hi, > > this works fine for me with 0.11.6 with stock Ubuntu and Debian Ruby > versions: > > ruby 1.8.6 (2007-06-07 patchlevel 36) [i486-linux] (Ubuntu 7.10) > ruby 1.8.5 (2006-08-25) [x86_64-linux] (Debian 4.0 (stable)) I'm using Ferret 0.11.6 on Gentoo Linux: ruby 1.8.6 (2007-09-24 patchlevel 111) [x86_64-linux] So maybe this is a Ruby 1.8.6-p111 bug? -- Bira http://compexplicita.wordpress.com http://compexplicita.tumblr.com
on 2008-07-01 18:07
I really want to get this working on my application but cannot get passed the below error I get the following on Ubuntu 8.04.1 \n \l ruby 1.8.6 (2007-06-07 patchlevel 36) [x86_64-linux] ==> mongrel.8006.log <== /usr/lib/ruby/gems/1.8/gems/ferret-0.11.6/lib/ferret/index.rb:138: [BUG] Segmentation fault ruby 1.8.6 (2007-09-24) [x86_64-linux] Bira wrote: > On Sun, Mar 2, 2008 at 2:10 PM, Jens Kraemer <kraemer@webit.de> wrote: >> Hi, >> >> this works fine for me with 0.11.6 with stock Ubuntu and Debian Ruby >> versions: >> >> ruby 1.8.6 (2007-06-07 patchlevel 36) [i486-linux] (Ubuntu 7.10) >> ruby 1.8.5 (2006-08-25) [x86_64-linux] (Debian 4.0 (stable)) > > I'm using Ferret 0.11.6 on Gentoo Linux: > ruby 1.8.6 (2007-09-24 patchlevel 111) [x86_64-linux] > > So maybe this is a Ruby 1.8.6-p111 bug? > > -- > Bira > http://compexplicita.wordpress.com > http://compexplicita.tumblr.com
Please log in before posting. Registration is free and takes only a minute.
Existing account
(Switch to SSL-encrypted connection)
NEW: Do you have a Google/GoogleMail or Yahoo account? No registration required!
Log in with Google account | Log in with Yahoo account
Log in with Google account | Log in with Yahoo account
No account? Register here.