in reply to Full Text Searching!

Swish-e is a great search engine with active Perl support. Very fast and easy to use, and updates the index very quickly.

Replies are listed 'Best First'.
Re^2: Full Text Searching!
by Ace128 (Hermit) on Jul 11, 2006 at 03:35 UTC
    Seems nice... although I'm little against running some external application like that from Perl. Prefer more integration. :) But gonna check it out!
      There is no external application. It's just a C library that you call via a Perl module, just as you would with SQLite or BerkeleyDB.
        Hmm, ok, I guess:
        $sh = SWISH->connect('Fork', prog => '/usr/local/bin/swish-e', indexes => 'index.swish-e', results => sub { print $_[1]->as_string,"\n" }, );
        confused me then...(prog part)