Displaying 20 results from an estimated 1000 matches similar to: "Sorted empty search bug"
2007 Feb 26
4
Ferret 0.11.0 tests segfault
I have an important segfault when I create the index (via
Ferret::Index::FieldInfos#create_index).
I decided to run the tests, this is what I have :
$> ruby test_all.rb
Loading once
Loaded suite test_all
Started
....................EEEEEEEE./unit/../unit/index/../../unit/store/../../unit/analysis/../../unit/utils/../../unit/query_parser/../../unit/search/tc_filter.rb:11:
[BUG] Segmentation
2007 Jan 01
2
Possible Bug when Creating Indexes
I''m running:
ferret (0.10.9)
ruby 1.8.5 (2006-08-25) [i386-mswin32]
on Windows XP(SP2)
When I create an index as follows:
field_infos = FieldInfos.new(:store => :yes, :term_vector => :no, :index
=> :yes)
field_infos.add_field(:id, :index => :untokenized)
field_infos.add_field(:subject)
field_infos.add_field(:author)
field_infos.add_field(:tags, :store => :no)
index =
2006 Sep 23
8
svn problems
I can consistently segfault the 0.10.4 gem, so I''m trying to get the
subversion version working with hopes towards tracking the problem down.
I have a fresh SVN checkout but:
a) the version (in ferret.rb) claims to be 0.9.6; and
b) Ferret::Index::FieldInfos and a couple other classes are missing at
run time. It looks like this is because they''re not exported in the C
2007 Jan 22
6
[Ferret] Test failures for ferret tagged REL-0.10.14
Hi Dave,
I''ve been getting some segment faults while running my tests using
0.10.14 gem so I decided to package the gem locally to add -dH and
generate core dumps for you.
So I followed instructions here
http://ferret.davebalmain.com/trac/wiki/DownloadCurrent and first off
ran the tests.
I''m getting the following failures. (see this pastie
http://pastie.caboo.se/34790).
I
2006 Aug 26
4
[0.10.0] Index#add_document bug with strange value ?
Perhaps, I found where is my problem (during a big import).
Why this silly (really silly :)) example crash ?
http://pastie.caboo.se/10357
/usr/lib/ruby/site_ruby/1.8/ferret/index.rb:211:in `add_document'': IO
Error occured at <except.c>:79 in xraise (IOError)
Error occured in fs_store.c:225 - fso_flush_i
flushing src of length -2
from
2006 Aug 24
1
[0.10.0] Random error when big import
In a rails script (something in the "script" dir with the good require)
I added many document (around 4000) to an index globaly instanciate (and
build if not present) in config/environment.rb.
I ran 3 three times my script (I deleted my index every time before),
and only the third was successful. That was STRANGE ! :)
These are the errors :
2006 Sep 27
2
Seg Fault - crashed our server
We were using ferret (with acts_as_ferret) on our production boxes.
Everything was going OK for a few days then we got a seg fault from it
that brought down the box.
The specs:
* Rails 1.1.6
* Ruby 1.8.4
* Ferret 0.10.6
* RedHat ES 3
* Apache
* Pound
* 5 instances of Mongrel
Can ferret handle multiple processes accessing it''s files at the same
time?
Not that we were doing this (but
2007 Jan 18
5
corrupt index immediately after rebuild
Hello,
I''m usin gferret and I''ve just attempted to build an index that contains
15,968,046 documents. I''ve rebuild the index from scratch, but when I
try to search for some items I get this error:
IOError: IO Error occured at <except.c>:79 in xraise
Error occured in fs_store.c:289 - fsi_seek_i
seeking pos -1284143798: <Invalid argument>
This is
2006 Nov 24
2
Strange error. Index corrupt on production server
We''ve been running Ferret for a few months on our site with great
result. But, just a monent ago the index suddenly became corrupt.
It all started with this error message:
:108250 is out of range [0..108183] for IndexWriter#[]
/usr/local/lib/ruby/gems/1.8/gems/ferret-0.10.9/lib/ferret/index.rb:382:in
`[]''
And after that every search resulted in this error:
A IOError
2005 Jan 19
3
rubytorrent problem on windows xp
Hi everyone
Is rubytorrent work on windows XP.
I have problem for using it.
Here my Configuration
OS: Windows XP
Ruby Version: 1.8.2
Already Install Azureus and ABC torrent. I manage to set Azerus behave
as tracker that listen to IP 127.0.0.1 and seeding file from
"\ekobudi\bittorrent\host0". After that I copy torrent file
from"\ekobudi\bittorent\host0" to"
2007 Jan 19
9
Double-quoted query with "and" fails.
Hi,
We''re using Ferret 0.9.4 and we''ve observed the following behavior.
Searching for ''fieldname: foo and bar'' works fine while ''fieldname:
"foo and bar"'' doesn''t return any results. Is there a way to make
ferret recognize the ''and'' inside the query as a search term and not
an operator? (I hope I got the
2005 Apr 20
2
RSS downloader
Hi,
I am current writing a ruby application that does
something similar the RSSFeed plugin for azureus (see
http://azureus.sourceforge.net/plugin_details.php?plugin=rssfeed).
in ruby. The plan is to use it drive rubytorrent to
do the actual downloading.
Does anyone know of a similar project written in ruby
?
This is my first project in ruby, I have been
programming in C and C++ for a number
2007 Feb 28
2
Ferret quick dump&load
Hello Dave, Hello all,
Some weeks ago, Maz submit a patch to quickly dump or load a ferret
database in an other format to prevent index rebuilding (due to changes
in the format) or to simplify backup/replication tasks.
I re-paste this patch (it was against the 0.10.14) here :
http://pastie.caboo.se/43603
Do you think it''s intresting for ferret ?
Do you have any plan for this patch ?
2007 Jan 17
7
removing special/syntax characters
Is there any somewhat standard way to remove or otherwise handle
special or syntax characters from a user''s search, such as a colon?
I was thinking maybe there was something akin to
Ferret::Analysis::FULL_ENGLISH_STOP_WORDS, like
Ferret::Analysis::FERRET_SYNTAX_CHARS, but no such luck.
How are other folks dealing with filtering user input?
John
2006 Aug 24
2
[0.10.0] LazyDoc#fields does not return symbols
Hi again,
fields() method of Ferret::Index::LazyDoc return an array of integer
(maybe the integer of the symbol? I don''t know) instead of symbols as
explained in the doc :
http://ferret.davebalmain.com/api_0.10.0/classes/Ferret/Index/LazyDoc.html#M000042
Any ideas ?
--
Posted via http://www.ruby-forum.com/.
2006 Aug 23
4
Ferret 0.10.0 bugs
Hi all !
Is Ferret 0.10.0 realy stable ?
Because I converted all my code to the new API and many strange things
appened.
For exemple this, when I run a import script :
/usr/lib/ruby/gems/1.8/gems/ferret-0.10.0/lib/ferret/index.rb:98:in
`initialize'': End-of-File Error occured at <except.c>:103 in
xpop_context (EOFError)
Error occured in store.c:197 - is_refill
current
2006 Aug 24
4
[0.10.0] Index#search_each options ignored
Hi Dave,
The options hash is not used in search_each() method.
--
Posted via http://www.ruby-forum.com/.
2005 Feb 07
3
WindowsXP
Already try the pre realease 0.3.
The rtpeer.rb is working. But I don''t know why is take quite a while to
listen only port 6969. The after that start to scan port 6881,6882..etc.
After that manage to download the file normally.
As usual I run everything in one PC. Azureus, ABC, and rubytorrent.
The example on "doc\api.txt" still doesn''t work for me.
I am very hapy the
2005 Jan 10
2
rubytorrent
hello,
we are interested in using rubytorrent as a project in a hackfest
we''re organizing, and I would like to know if you have any idea
of stuff that needs to be done, or something like it.
Thanks,
--lf
2006 Aug 30
5
[0.10.x] Index#search with wildcard bug
Hello all,
This script (http://pastie.caboo.se/10872) return this :
Total hits = 100
Total hits = 0
This is not cool :(
Dave ? Jens ? Someone ? Do you have any idea ?
Thanks in advance.
--
Posted via http://www.ruby-forum.com/.