Displaying 20 results from an estimated 100000 matches similar to: "crash on repeated search"
2006 Dec 07
8
crash on repeated search
I have found another crash in ferret; this one just uses a regular 
search. It''s similar to an issue reported by Matt Schnitz a while ago, 
but unlike his, mine does not go away if I turn off omit_norms. It does 
go away if I turn on the garbage collector more often, but I''m not sure 
that''s a stable workaround under the circumstances.
This one isn''t a
2007 Mar 16
5
ferret on 64bit systems?
I''m still having some crashes on my server that don''t seem to happen on 
my development system. One difference between them is that the server is 
running in 64bit mode. Are there any issues running ferret on a 64bit 
system? I''ve seen some old traffic on the subject but all from about 9 
months ago.
There are some warnings printed out when I install ferret on the
2007 Feb 16
8
term vector blues
I have a lot of crashes when I try to use term vectors. Here''s an
example, which crashes pretty consistently. This problem seems to be
somewhat sensitive to platform... people on other OS''s and ruby versions
have reported no error. I have seen this with ferret 0.10.13 and 0.10.14
on debian stable using ruby 1.8.2, but I have observed the same problem
on various other systems as
2007 Apr 06
1
0.11.4 tidings
I''ve tried 0.11.4, and it has not yet crashed, even after I removed 
(most of) the workarounds. However, the same is also true of 0.11.3... I 
haven''t seen any of these crashes for several days, which is a very good 
thing. I can''t remember all the workarounds I did to sidestep the 
crashing; some of them I don''t want to reverse because they actually 
were also
2007 Mar 01
2
FerretHash
Dave, thank you so much for the 0.11 release(s). You have solved many 
problems for me. As part of my appreciation for your good works, I am 
offering up for public consideration a silly little class that I wrote. 
(Code is below.) This class offers a simplified Hash-like interface to 
(a very restricted subset of) Ferret. Hence I call it FerretHash.
FerretHash comes with its very own pet Ferret
2007 Mar 09
5
memory leak in index build?
I have a script (below) which attempts to make an index out of all the 
man pages on my system. It takes a while, mostly because it runs man 
over and over... but anyway, as time goes on the memory usage goes up 
and up and never down. Eventually, it runs out of ram and just starts 
thrashing up the swap space, pretty much grinding to a halt.
The workaround would seem to be to index documents in
2007 Apr 03
2
How can I count frequency of terms in a document?
Hi, there.
I need some help.
Is there a way to count frequencies of terms in a document on Ferret?
I know that Ferret has IndexReader#terms_docs_for method which counts
all documents.
I need to count frequencies of terms in a specific document.
Some way??
-- 
Posted via http://www.ruby-forum.com/.
2007 May 31
2
Ferret.donate(Money.aus_dollar(200))
Remember folks, we can support the Ferret project by donating warm soft
electronic cash to the author, Dave Balmain, using the paypal buttons on
the website:
http://ferret.davebalmain.com/trac
http://ferret.davebalmain.com/trac/wiki/DonationsFAQ
We can also buy the Ferret Shortcut pdf/book from O''Reilly, also written
by Dave Balmain.  It''s awesome good:
2007 Feb 28
4
Ferret 0.11.2-rc3 released
Hey guys,
I''ve just removed the -fno-stack-protector flag from the release so
those who had trouble because of this should now be able to install
0.11.2-rc3. If you have any problems with this release, please let me
ASAP.
Cheers,
Dave
-- 
Dave Balmain
http://www.davebalmain.com/
2006 Oct 16
0
Ruby Hacker Interview: Dave Balmain
Guess Dave wasn''t going to blow his own trumpet so someone else has to 
do it for him. An interesting interview with Dave that filled in the 
gaps on the About Me page I had asked about...
http://on-ruby.blogspot.com/2006/10/ruby-hacker-interview-dave-balmain.html
-- 
Posted via http://www.ruby-forum.com/.
2006 Oct 26
5
Away for a week
Hey folks,
I''m off to Vietnam for a week on my way home to Australia so I''ll be
off the list for a while. Don''t think I''m ignoring you. When I get
back I intend to aggressively hunt down the segfault problem that some
of you are having in Ferret so that problem will soon be ancient
history. If anyone can narrow down a test case that can consistently
segfault it
2006 Dec 18
2
I''m back
Hey all,
I''m back. Some of you are probably thinking that is the longest weeks
vacation on record. Well, I''d like to take this opportunity to
apologise for my absence and offer a brief explanation. When I got
back to Australia I naturally went home to visit my parents, only to
find that they have been hit really hard by the drought. They didn''t
really tell me just how
2007 Feb 22
4
Ferret progress update
Hi folks,
Just thought I better let you all know that I''m still working on the
next release of Ferret. I''ve been working the last 7 days doing
nothing but Ferret development. The last iteration generated a diff of
almost 5000 lines so there are some pretty major changes. Most people
won''t notice these changes however as the API remains unchanged. But
if you were having
2007 Apr 06
0
Ferret-0.11.4-rc5 released
Hey folks,
I''ve just put another release up. I''ve mostly just fixed some
stability and memory leak issues. The most notable change is the
probably the addition of a win32 gem to make life a little easier for
all those Windows users out there.
Also, I''ve added an index browser. Just try running;
    > ferret-browser path/to/index
and then visit;
   
2006 Nov 22
2
crash while retrieving term vectors
This program reliably crashes for me (usually a segfault):
require ''rubygems''
require ''ferret''
reader=Ferret::Index::IndexReader.new ARGV
fields=reader.field_infos.fields
reader.max_doc.times{|n|
   fields.each{|field|
     reader.term_vector(n,field)
   } unless reader.deleted?(n)
   print "."; STDOUT.flush
}
As you can see, it just goes through
2006 Dec 19
1
FerretDonors page added to wiki
Hey folks,
I''ve just added a FerretDonors page to the Wiki (for those interested
we have raised $3915 to date). Currently it just has a list of donors
but I would like to add links for each donor to their personal and/or
business websites. This is something I should have done a long time
ago. I''d love to hear any suggestions as to how I can better recognize
these
2007 Mar 02
4
Sorted empty search bug
Hello Dave, Hello all,
I''ve got this error because I try to search something and sort it by
name :
  Argument Error occured at <except.c>:93 in xraise
  Error occured in sort.c:551 - field_cache_get_index
  Cannot sort by field "name". It doesn''t exist in the index.
The problem, occur when my index is empty, so the field "name" does not
exists.
--
2007 Feb 19
2
Ferret seg-faulting during search
Hi,
I''m using ferret and running into troubles with it seg faulting during
searches.  The index I''m searching is static and is only updated in an
offline way once every couple weeks.
The segfault isn''t deterministically reproducible, but if I hammer
ferret hard enough I can reliably get it to crash.  The problem seems to
have something to do with how memory is shared
2006 Jul 07
4
How to add Asia token analyzer to ferret simply?
Hi,David
Can you give me an example of how to add analyzer to ferret to Asian 
languages?
My web application will have to support multi language search,which 
means,for example,both Chinese and English will be searched through the 
form.
Currently,I have decided to use the simple token principles,which means 
that every Chinese character will be a token,although this is not so 
well in some
2006 Mar 19
3
Ferret 0.9.0-alpha (port of Apache Lucene to pure ruby)
Hi Folks,
I''ve just released version 0.9.0. This latest version of Ferret is an
alpha release. I have removed the old c extension and Ferret is now
running on a fully ported C library. This has allowed some huge
performance improvements both with regard to memory and CPU usage.
There will probably be a few portability issues to start with. It has
been developed on Linux so it should