public
Description: Ferret: the extensible information retrieval library for ruby.
Homepage: http://ferret.davebalmain.com
Clone URL: git://github.com/dbalmain/ferret.git
dbalmain (author)
Wed Sep 02 18:00:45 -0700 2009
commit  9f23002c6eb7b513ed9b26b45bc4b34d07b74373
tree    4d74dbf27e3ebda40952d2dbdf11edb797227813
parent  ec888d92193cea6a087a6bead6d69817be46f64d
ferret / README
100644 62 lines (42 sloc) 1.843 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
Ferret
=======
 
Ferret is an information retrieval library in the same vein as Apache Lucene[1].
Originally it was a full port of Lucene but it now uses it's own file format
and indexing algorithm although it is still very similar in many ways to
Lucene. Everything you can do in Lucene you should be able to do in Ferret.
 
 
For more information on Ferret, please visit the website:
 
    http://ferret.davebalmain.com/trac
 
[1] (http://jakarta.apache.org/lucene/)
 
Contents
=========
 
c/
    Ferret is written in C for speed. The actual C code should be fairly easy
    to use in an application or bindings to a language other than Ruby.
 
ruby/
    This directory contains the Ruby bindings and tests. See ruby/README for
    information on installing Ferret's Ruby bindings
 
smoke_test.rb
    If you would like to ensure that ferret keeps working on your system, add
    this method to a cron daemon to run as often as you like. Every time I
    check in a new version of Ferret, this script will pull down the changes
    from the repository and run all of the unit tests (C and Ruby), notifying
    me if anything is broken. The more people running this script the more
    stable ruby will be.
 
Contributions
=============
 
To contribute code, please contact Dave Balmain at dbalmain.gmail.com or submit
a ticket to the Ferret website[2]. If you would like to contribute financially,
please also visit the Ferret website:
 
[2] http://ferret.davebalmain.com/trac.
 
Authors
========
 
[<b>David Balmain</b>] {dbalmain@gmail.com}
 
Acknowledgements
=================
 
[The Apache Software Foundation (Doug Cutting and friends)] Original Apache
Lucene. There have also been many other contributers to Ferret. I will start
to record them on the Ferret website.
 
License
========
 
Ferret is available under an MIT-style license.
 
See MIT-LICENSE