I'm looking to use an inverted index for Ruby. There used to be Zed
Shaw's Ruby/odeum that did this using QDBM's inverted index API. I can
find references to this all over the web, unfortuntely but the original
site is gone and I can't find any mirrors.
Can anybody help me out?
···
--
Chanoch (Ken) Bloom. PhD candidate. Linguistic Cognition Laboratory.
Department of Computer Science. Illinois Institute of Technology. http://www.iit.edu/~kbloom1/
If not maybe you would care to explain what is an inverted index please ;).
···
On Fri, May 22, 2009 at 7:08 PM, Ken Bloom <kbloom@gmail.com> wrote:
I'm looking to use an inverted index for Ruby. There used to be Zed
Shaw's Ruby/odeum that did this using QDBM's inverted index API. I can
find references to this all over the web, unfortuntely but the original
site is gone and I can't find any mirrors.
Can anybody help me out?
--
Toutes les grandes personnes ont d’abord été des enfants, mais peu
d’entre elles s’en souviennent.
All adults have been children first, but not many remember.
I'm looking to use an inverted index for Ruby. There used to be
Zed Shaw's Ruby/odeum that did this using QDBM's inverted index
API. I can find references to this all over the web, unfortuntely
but the original site is gone and I can't find any mirrors.
you can find the project page on the internet archive [1] and the
gem on rubyforge (gem install ruby_odeum). is that what you're after?
On Sat, May 23, 2009 at 02:08:34AM +0900, Ken Bloom wrote:
I'm looking to use an inverted index for Ruby. There used to be Zed
Shaw's Ruby/odeum that did this using QDBM's inverted index API. I can
find references to this all over the web, unfortuntely but the original
site is gone and I can't find any mirrors.
It could be expressed as a Hash of Arrays, but when you start
operating on even medium-small text collections, it can get
inefficient to load the whole thing into RAM when you don't need
to.
···
In article <335e48a90905221136y1ce96833va63b74230e1bc646@mail.gmail.com> you wrote:
On Fri, May 22, 2009 at 7:08 PM, Ken Bloom <kbloom@gmail.com> wrote:
I'm looking to use an inverted index for Ruby. There used to be Zed
Shaw's Ruby/odeum that did this using QDBM's inverted index API. I can
find references to this all over the web, unfortuntely but the original
site is gone and I can't find any mirrors.
Can anybody help me out?
If not maybe you would care to explain what is an inverted index please ;).
--
Chanoch (Ken) Bloom. PhD candidate. Linguistic Cognition Laboratory.
Department of Computer Science. Illinois Institute of Technology. http://www.iit.edu/~kbloom1/
I'm looking to use an inverted index for Ruby. There used to be Zed
Shaw's Ruby/odeum that did this using QDBM's inverted index API. I can
find references to this all over the web, unfortuntely but the original
site is gone and I can't find any mirrors.
you can find the project page on the internet archive [1] and the gem on
rubyforge (gem install ruby_odeum). is that what you're after?
In the end I found that version 0.2.1 is on Rubyforge (somewhere -- a
search on the website didn't find a project responsible for maintining
it, but I found the gem in RubyGems), and I somehow got my hands on an
0.4 gem which I have mirrored at http://www.iit.edu/~kbloom1/ for the
time being, until I find something better to do with it.
--Ken
···
On Sat, 23 May 2009 05:51:59 +0900, Jens Wille wrote:
--
Chanoch (Ken) Bloom. PhD candidate. Linguistic Cognition Laboratory.
Department of Computer Science. Illinois Institute of Technology. http://www.iit.edu/~kbloom1/
On Sat, May 23, 2009 at 9:08 PM, Ken Bloom <kbloom@gmail.com> wrote:
Unfortunately they don't mirror the actual gems.
In the end I found that version 0.2.1 is on Rubyforge (somewhere -- a
search on the website didn't find a project responsible for maintining
it, but I found the gem in RubyGems), and I somehow got my hands on an
0.4 gem which I have mirrored at http://www.iit.edu/~kbloom1/<http://www.iit.edu/~kbloom1/>for the
time being, until I find something better to do with it.
Zed still has all the software on his web site - just no links into it