Gmail Calendar Documents Reader Web more »
Recently Visited Groups | Help | Sign in
Google Groups Home
Ferret 0.1.0 (Port of Java Lucene) released
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  22 messages - Expand all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
David Balmain  
View profile  
 More options Oct 20 2005, 10:36 pm
Newsgroups: comp.lang.ruby
From: David Balmain <dbalmain...@gmail.com>
Date: Fri, 21 Oct 2005 11:36:15 +0900
Local: Thurs, Oct 20 2005 10:36 pm
Subject: [ANN] Ferret 0.1.0 (Port of Java Lucene) released

Hi Folks,

I know there have been at least a few people looking for something like this
on the mailing list, so please check it out. It's a port of a Java project
so I'd particularly like to hear how I can make it more Ruby like. Enjoy!

Dave Balmain

== Description

Ferret is a full port of the Java Lucene searching and indexing library.
It's available as a gem so try it out! To get started quickly read the quick
start at the project homepage;

http://ferret.davebalmain.com/trac/

== Quick (Very Simple) Example

require 'ferret'

include Ferret

docs = [
{ :title => "The Pragmatic Programmer",
:author => "Dave Thomas, Andy Hunt",
:tags => "Programming, Broken Windows, Boiled Frogs",
:published => "1999-10-13",
:content => "Yada yada yada ..."

},

{ :title => "Programming Ruby",
:author => "Dave Thomas, Chad Fowler, Andy Hunt",
:tags => "Ruby",
:published => "2004-10-06",
:content => "Yada yada yada ..."
},

{ :title => "Agile Web Development with Rails",
:author => "Dave Thomas, David Heinemeier Hansson, Leon Breedt, Mike Clark,
Thomas Fuchs, Andreas Schwarz",
:tags => "Ruby, Rails, Web Development",
:published => "2005-07-13",
:content => "Yada yada yada ..."
},

{ :title => "Ruby, Developer's Guide",
:author => "Robert Feldt, Lyle Johnson, Michael Neumann",
:tags => "Ruby, Racc, GUI, FOX",
:published => "2002-10-06",
:content => "Yada yada yada ..."
},

{ :title => "Lucene In Action",
:author => "Otis Gospodnetic, Erik Hatcher",
:tags => "Lucene, Java, Search, Indexing",
:published => "2004-12-01",
:content => "Yada yada yada ..."
}

]

index = Index::Index.new()

docs.each {|doc| index << doc }

puts index.size

puts "\nFind all documents on ruby:-"
index.search_each("tags:Ruby") do |doc, score|
puts "Document <#{index[doc]["title"]}> found with a score of %0.2f" % score
end

puts "\nFind all documents on ruby published this year:-"
index.search_each("tags:ruby AND published: >= 2005") do |doc, score|
puts "Document <#{index[doc]["title"]}> found with a score of %0.2f" % score
end

puts "\nFind all documents by the Pragmatic Programmers:-"
index.search_each('author:("dave Thomas" AND "Andy hunt")') do |doc, score|
puts "Document <#{index[doc]["title"]}> found with a score of %0.2f" % score
end


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Ryan Leavengood  
View profile  
 More options Oct 21 2005, 12:46 am
Newsgroups: comp.lang.ruby
From: Ryan Leavengood <leaveng...@gmail.com>
Date: Fri, 21 Oct 2005 13:46:24 +0900
Local: Fri, Oct 21 2005 12:46 am
Subject: Re: [ANN] Ferret 0.1.0 (Port of Java Lucene) released
On 10/20/05, David Balmain <dbalmain...@gmail.com> wrote:

> Ferret is a full port of the Java Lucene searching and indexing library.

Uh oh, there goes another Ruby Quiz idea[1] torpedoed by a diligent
library author ;)

I mean that with the utmost respect as this looks cool. Love the name too.

Ryan

P.S. Eh, we can do the Ruby Quiz either way :D

1. http://ruby-talk.org/cgi-bin/scat.rb/ruby/ruby-talk/161261


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Tobias Luetke  
View profile  
 More options Oct 21 2005, 1:13 am
Newsgroups: comp.lang.ruby
From: Tobias Luetke <tobias.lue...@gmail.com>
Date: Fri, 21 Oct 2005 14:13:35 +0900
Local: Fri, Oct 21 2005 1:13 am
Subject: Re: [ANN] Ferret 0.1.0 (Port of Java Lucene) released
Amazing,

This is a tremendous gift to the ruby on rails crowd. Lucene was
probably *the* library which was most missed in the ruby world.

Cheers for such an amazing port.

On 10/20/05, David Balmain <dbalmain...@gmail.com> wrote:

> Hi Folks,

> I know there have been at least a few people looking for something like this
> on the mailing list, so please check it out. It's a port of a Java project
> so I'd particularly like to hear how I can make it more Ruby like. Enjoy!

> Dave Balmain

--
Tobi
http://jadedpixel.com    - modern e-commerce software
http://typo.leetsoft.com - Open source weblog engine
http://blog.leetsoft.com - Technical weblog

    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
David Balmain  
View profile  
 More options Oct 21 2005, 1:21 am
Newsgroups: comp.lang.ruby
From: David Balmain <dbalmain...@gmail.com>
Date: Fri, 21 Oct 2005 14:21:08 +0900
Local: Fri, Oct 21 2005 1:21 am
Subject: Re: [ANN] Ferret 0.1.0 (Port of Java Lucene) released

On 10/21/05, Ryan Leavengood <leaveng...@gmail.com> wrote:

> P.S. Eh, we can do the Ruby Quiz either way :D

> 1. http://ruby-talk.org/cgi-bin/scat.rb/ruby/ruby-talk/161261

Thanks for pointing that out. I missed it. I do think it's a great idea for
a quiz though. It will be interesting to see what people come up with in say
50 lines as opposed to 10,000. And I'll be able to see who to hit up for
some help. ;-)

Dave


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Sean O'Halpin  
View profile  
 More options Oct 21 2005, 3:22 am
Newsgroups: comp.lang.ruby
From: Sean O'Halpin <sean.ohal...@gmail.com>
Date: Fri, 21 Oct 2005 16:22:15 +0900
Local: Fri, Oct 21 2005 3:22 am
Subject: Re: [ANN] Ferret 0.1.0 (Port of Java Lucene) released
On 10/21/05, David Balmain <dbalmain...@gmail.com> wrote:
> Ferret is a full port of the Java Lucene searching and indexing library.

Superb! Thanks!

Sean


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Bob Hutchison  
View profile  
 More options Oct 21 2005, 7:19 am
Newsgroups: comp.lang.ruby
From: Bob Hutchison <hu...@recursive.ca>
Date: Fri, 21 Oct 2005 20:19:17 +0900
Local: Fri, Oct 21 2005 7:19 am
Subject: Re: [ANN] Ferret 0.1.0 (Port of Java Lucene) released
This is great news! I'm installing it now, and will have a go at it  
whenever the gem shows up :-)

The link to the tutorial embedded on your intro page is incorrect  
(the one in the TOC at the top right works though)

Cheers,
Bob

On Oct 20, 2005, at 10:36 PM, David Balmain wrote:

----
Bob Hutchison          -- blogs at <http://www.recursive.ca/hutch/>
Recursive Design Inc.  -- <http://www.recursive.ca/>
Raconteur              -- <http://www.raconteur.info/>

    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
George Moschovitis  
View profile  
 More options Oct 21 2005, 7:58 am
Newsgroups: comp.lang.ruby
From: George Moschovitis <george.moschovi...@gmail.com>
Date: Fri, 21 Oct 2005 20:58:58 +0900
Local: Fri, Oct 21 2005 7:58 am
Subject: Re: [ANN] Ferret 0.1.0 (Port of Java Lucene) released
Can't wait to try this!

thanks,
George.

On 10/21/05, David Balmain <dbalmain...@gmail.com> wrote:

--
http://www.gmosx.com
http://www.navel.gr
http://www.nitrohq.com

    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
David Balmain  
View profile  
 More options Oct 21 2005, 8:26 am
Newsgroups: comp.lang.ruby
From: David Balmain <dbalmain...@gmail.com>
Date: Fri, 21 Oct 2005 21:26:26 +0900
Local: Fri, Oct 21 2005 8:26 am
Subject: Re: [ANN] Ferret 0.1.0 (Port of Java Lucene) released

> The link to the tutorial embedded on your intro page is incorrect
> (the one in the TOC at the top right works though)

Bob, thanks for that, the link is fixed now. Unfortunately my
packaging system is a bit broken. I think a few files got left out so
please wait for version 0.1.1. It'll be ready in a couple of hours.

Regards,
Dave


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
James Edward Gray II  
View profile  
 More options Oct 21 2005, 8:30 am
Newsgroups: comp.lang.ruby
From: James Edward Gray II <ja...@grayproductions.net>
Date: Fri, 21 Oct 2005 21:30:50 +0900
Local: Fri, Oct 21 2005 8:30 am
Subject: Re: [ANN] Ferret 0.1.0 (Port of Java Lucene) released
On Oct 20, 2005, at 11:46 PM, Ryan Leavengood wrote:

> P.S. Eh, we can do the Ruby Quiz either way :D

> 1. http://ruby-talk.org/cgi-bin/scat.rb/ruby/ruby-talk/161261

I still think the quiz will be fun.  Our goals are humble compared to  
a library like this.

James Edward Gray II


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Devin Mullins  
View profile  
 More options Oct 21 2005, 8:51 am
Newsgroups: comp.lang.ruby
From: Devin Mullins <twif...@comcast.net>
Date: Fri, 21 Oct 2005 21:51:36 +0900
Local: Fri, Oct 21 2005 8:51 am
Subject: Re: [ANN] Ferret 0.1.0 (Port of Java Lucene) released
Question for those (soon to be) in the know:

How does this compare to (Estraier/Hyper
Estraier/Ruby-Odeum/SimpleSearch/other 'IR' systems with  Ruby
bindings?) on (ease of learning/ease of use/ease of
maintenance/speed/any other noteworthy attributes)? To put it simply,
which one should I choose?* :)

(Well, speed's pretty well covered on the home page, though I'm not sure
how much faster Hyper Estraier is than Lucene, and not sure how much
slower SimpleSearch is than Ferret. I only ask because it's the thing
people in the position of questioneer are /supposed/ to do.)

Free feel to answer whatever part of that you (want/know), or just tell
me to fork off... a thread.

*For those actually interested in answering that question, it'll be an
intranet app that won't likely get a major amount of hits, but will
likely have a major amount of data. Right now, I'm just looking to make
a rough prototype in a week, but wouldn't mind picking a contender, if
quickly-pickuppable.

(Devin/twifkak)
//


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Norjee  
View profile  
 More options Oct 21 2005, 9:24 am
Newsgroups: comp.lang.ruby
From: "Norjee" <Nor...@gmail.com>
Date: 21 Oct 2005 06:24:14 -0700
Local: Fri, Oct 21 2005 9:24 am
Subject: Re: Ferret 0.1.0 (Port of Java Lucene) released
Atm i'm using jruby to use lucene search, but this definitely sounds
great!!! Do you have any plans to include snowball stemmers? As my
documents are not english, i could use them ;)

I just recall ruby's stemmer4r, which wraps the snowball stemmers. I
can't
wait to use this ;)


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Hal Fulton  
View profile  
 More options Oct 21 2005, 3:30 pm
Newsgroups: comp.lang.ruby
From: Hal Fulton <hal9...@hypermetrics.com>
Date: Sat, 22 Oct 2005 04:30:34 +0900
Local: Fri, Oct 21 2005 3:30 pm
Subject: Re: [ANN] Ferret 0.1.0 (Port of Java Lucene) released

Sean O'Halpin wrote:
> On 10/21/05, David Balmain <dbalmain...@gmail.com> wrote:

>>Ferret is a full port of the Java Lucene searching and indexing library.

> Superb! Thanks!

I'm probably wrong, but I thought we already had
a port of this? A thing called Rucene?

Hal
(goes off to Google)


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
David Balmain  
View profile  
 More options Oct 21 2005, 3:30 pm
Newsgroups: comp.lang.ruby
From: David Balmain <dbalmain...@gmail.com>
Date: Sat, 22 Oct 2005 04:30:50 +0900
Local: Fri, Oct 21 2005 3:30 pm
Subject: Re: Ferret 0.1.0 (Port of Java Lucene) released

On 10/21/05, Norjee <Nor...@gmail.com> wrote:

> Atm i'm using jruby to use lucene search, but this definitely sounds
> great!!! Do you have any plans to include snowball stemmers? As my
> documents are not english, i could use them ;)

Hi Norjee,
I've looked at the snowball parser and I don't think it would be too hard to
do a pure ruby version of this if enough people are interested. But that is
pretty low on my to do list so I hope stemmer4r will do for now. I also hope
that you won't be needing unicode support as that is one of the things that
is missing in Ferret. Speaking of which, anyone know of any good ruby
unicode tutorials?

Dave


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
David Balmain  
View profile  
(1 user)  More options Oct 21 2005, 4:05 pm
Newsgroups: comp.lang.ruby
From: David Balmain <dbalmain...@gmail.com>
Date: Sat, 22 Oct 2005 05:05:34 +0900
Local: Fri, Oct 21 2005 4:05 pm
Subject: Re: [ANN] Ferret 0.1.0 (Port of Java Lucene) released

On 10/21/05, Devin Mullins <twif...@comcast.net> wrote:

> Question for those (soon to be) in the know:

> How does this compare to (Estraier/Hyper
> Estraier/Ruby-Odeum/SimpleSearch/other 'IR' systems with Ruby
> bindings?) on (ease of learning/ease of use/ease of
> maintenance/speed/any other noteworthy attributes)? To put it simply,
> which one should I choose?* :)

Hi Devin,
I'm afraid I've only briefly looked at those other IR systems but I'll try
and answer your question as best I can. I think Ferret is currently pretty
easy to learn and use through the Index interface as described in my
original post. I don't think ease of use should turn you off. Once I've done
a bit more work on the documentation, I think it'll be a lot easier to find
your way around than some of the other ones. But it'll be significantly
slower than the C library backed search engines. I'm certainly not the type
of person to say speed isn't important, however, I think ferret should
easily handle the kind of website you are talking about.

Ferret should be a lot faster than SimpleSearch for large document sets.
Having said that, there is a ruby quiz coming up for which I intend to write
a quick and simple search engine that will easily outperform simple search
so if people are interested, I might make that a project too.

== As for the others, the main advantages of Ferret are;

* a more powerful extendable query language. You can do boolean, phrase,
range, fuzzy (for misspellings etc), wildcard, sloppy phrase (out of order
phrases) and more. Check out the Query Parser in the API for more info on
the query language.
http://ferret.davebalmain.com/api/classes/Ferret/QueryParser.html

* a more powerful document structure. I could be wrong about this so someone
please correct me if I am, but I think most of the other IR's just take a
string as a document. Ferrets documents can have multiple fields. Each field
can have a different analyzer (parses field into tokens). You can store
binary fields like images or compress your data. In fact, you could do away
with a database altogether and just use Ferret. (You can also store term
vectors if you want to compare document similarities, but that's getting
pretty technical)

* Ferret is pure ruby (at least it can be if you don't install the C
extension) so it'll run anywhere Ruby does.

* If you are patient, Ferret will one day match or beat the speed of those
other search engines. Hopefully by Christmas but it all depends how much
help I can get between now and then.

== And the main disadvantages;

* Ferret is still alpha and has not been put into production yet. Hopefully
that will change soon.

* Ferret is currently slower than the C backed IRs

Anyway, sorry for such a long email. It's really hard to describe all the
features available. In fact, there is a whole book on Lucene by Erik Hatcher
and Otis Gospodnetic which I highly recommend if you want to take full
advantage of all the features in Ferret. Most of the examples should
translate pretty easily into Ruby.

Please let me know if you have any more questions.
Regards,
Dave


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
David Balmain  
View profile  
 More options Oct 21 2005, 4:09 pm
Newsgroups: comp.lang.ruby
From: David Balmain <dbalmain...@gmail.com>
Date: Sat, 22 Oct 2005 05:09:22 +0900
Local: Fri, Oct 21 2005 4:09 pm
Subject: Re: [ANN] Ferret 0.1.0 (Port of Java Lucene) released

On 10/22/05, Hal Fulton <hal9...@hypermetrics.com> wrote:

> I'm probably wrong, but I thought we already had
> a port of this? A thing called Rucene?

Yes and also one called rubylucene. Unfortunately Erik Hatcher never had the
time to get those projects off the ground. Hopefully he'll have time to help
me out now that the port is finished though. ;)

    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Miles Keaton  
View profile  
 More options Oct 21 2005, 5:14 pm
Newsgroups: comp.lang.ruby
From: Miles Keaton <mileskea...@gmail.com>
Date: Sat, 22 Oct 2005 06:14:05 +0900
Local: Fri, Oct 21 2005 5:14 pm
Subject: Re: [ANN] Ferret 0.1.0 (Port of Java Lucene) released
On 10/20/05, David Balmain <dbalmain...@gmail.com> wrote:

> Ferret is a full port of the Java Lucene searching and indexing library.
> http://ferret.davebalmain.com/trac/

David -

Have you looked into what it would take to allow all text to be UTF-8?
Would it take a complete overhaul or a somewhat-minor tweak?
If a tweak, what would you charge to make that lovely update?  :-)


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
David Balmain  
View profile  
 More options Oct 21 2005, 11:27 pm
Newsgroups: comp.lang.ruby
From: David Balmain <dbalmain...@gmail.com>
Date: Sat, 22 Oct 2005 12:27:45 +0900
Local: Fri, Oct 21 2005 11:27 pm
Subject: Re: [ANN] Ferret 0.1.0 (Port of Java Lucene) released

On 10/22/05, Miles Keaton <mileskea...@gmail.com> wrote:

> Have you looked into what it would take to allow all text to be UTF-8?
> Would it take a complete overhaul or a somewhat-minor tweak?
> If a tweak, what would you charge to make that lovely update? :-)

I'm looking in to it now. I'll send you the bill. ;-)

    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
David Balmain  
View profile  
 More options Oct 22 2005, 3:56 am
Newsgroups: comp.lang.ruby
From: David Balmain <dbalmain...@gmail.com>
Date: Sat, 22 Oct 2005 16:56:32 +0900
Local: Sat, Oct 22 2005 3:56 am
Subject: Re: [ANN] Ferret 0.1.0 (Port of Java Lucene) released

On 10/22/05, David Balmain <dbalmain...@gmail.com> wrote:

> On 10/22/05, Miles Keaton <mileskea...@gmail.com> wrote:

> > Have you looked into what it would take to allow all text to be UTF-8?
> > Would it take a complete overhaul or a somewhat-minor tweak?
> > If a tweak, what would you charge to make that lovely update? :-)

Hi Miles,
Currently the query parser struggles with UTF-8 but apart from that you
should be able to use UTF-8. You'll need to write your own analyzer for
whatever language you are using, as well as implementing your own sort
procedure if you want to sort results by strings. Here is an example I
tried. The strings are chinese so apologies if your browser can't display
them. (I have no idea what they mean).

require 'rubygems'
require 'ferret'
include Ferret

class ChineseAnalyzer
def token_stream(field, string)
tokenizer = Analysis::RegExpTokenizer.new(string)
class <<tokenizer
def token_re() /./ end
end
return tokenizer
end
end

docs = ["道德經", "搜索所有网页", "搜索所有中文网页", "搜索简体中文网页"]

index = Index::Index.new(:analyzer => ChineseAnalyzer.new)

docs.each { |doc| index << doc }

puts index[3][""]

tq = Search::TermQuery.new(Index::Term.new("", "网"))

index.search_each(tq) do |doc, score|
puts "Document #{doc} found with score #{score}"
end

index.close


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Miles Keaton  
View profile  
 More options Oct 22 2005, 6:25 pm
Newsgroups: comp.lang.ruby
From: Miles Keaton <mileskea...@gmail.com>
Date: Sun, 23 Oct 2005 07:25:55 +0900
Local: Sat, Oct 22 2005 6:25 pm
Subject: Re: [ANN] Ferret 0.1.0 (Port of Java Lucene) released
one correction:
RegExpTokenizer should be RETokenizer
(at least in the version you've released publicly)


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
David Balmain  
View profile  
 More options Oct 22 2005, 11:29 pm
Newsgroups: comp.lang.ruby
From: David Balmain <dbalmain...@gmail.com>
Date: Sun, 23 Oct 2005 12:29:49 +0900
Local: Sat, Oct 22 2005 11:29 pm
Subject: Re: [ANN] Ferret 0.1.0 (Port of Java Lucene) released

On 10/23/05, Miles Keaton <mileskea...@gmail.com> wrote:

> one correction:
> RegExpTokenizer should be RETokenizer
> (at least in the version you've released publicly)

Doh, I meant to change that for the email. Anyway, in case you're
interested, I also fixed the problem with the query parser so that it should
also parse UTF-8 queries. That'll be out in the next release.

Dave


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
peter.r.bai...@gmail.com  
View profile  
 More options Oct 28 2005, 2:51 am
Newsgroups: comp.lang.ruby
From: peter.r.bai...@gmail.com
Date: 27 Oct 2005 23:51:03 -0700
Local: Fri, Oct 28 2005 2:51 am
Subject: Re: Ferret 0.1.0 (Port of Java Lucene) released
I have to say that the combination of Ruby, Eclipse, and Ferret have
just blown me away today. I've gone from knowing that Ruby existed (for
several years in fact), to thinking that I should check it out over the
last couple of months, to reading some of the doc yesterday, to having
a complete running installation of Ruby (through the One Click Windows
installer), with Eclipse layered on top, and Ferret installed and
operational - at least for this test example - in the space of 4 hours!

Really looking forward to the UTF-8 support too - some Google searching
on Ruby and UTF-8 led me to Ferret in the first place. Looks like an
absolutely great platform to do experiments in information retrieval
with - which is just what I need.

Well done and many thanks!

Peter


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
David Balmain  
View profile  
 More options Oct 28 2005, 3:46 am
Newsgroups: comp.lang.ruby
From: David Balmain <dbalmain...@gmail.com>
Date: Fri, 28 Oct 2005 16:46:48 +0900
Local: Fri, Oct 28 2005 3:46 am
Subject: Re: Ferret 0.1.0 (Port of Java Lucene) released

Hi Peter,

Welcome aboard. With all the people who are coming to ruby because of rails,
it's great to hear my project has helped to convert someone. I hope you
enjoy it here.

Cheers,
Dave

On 10/28/05, peter.r.bai...@gmail.com <peter.r.bai...@gmail.com> wrote:


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »

Create a group - Google Groups - Google Home - Terms of Service - Privacy Policy
©2009 Google