in reply to Re: Full Text Searching!
in thread Full Text Searching!

Seems nice... although I'm little against running some external application like that from Perl. Prefer more integration. :) But gonna check it out!

Replies are listed 'Best First'.
Re^3: Full Text Searching!
by perrin (Chancellor) on Jul 11, 2006 at 03:59 UTC
    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)
        That looks like an old module. The one you want is called SWISH::API.