Re: search engine module?

2001-10-18 Thread Kee Hinckley
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 People have been talking about backend search engines, but when I saw the subject I was thinking more about front end classes. In particular, last time I looked there wasn't a standard class for integrating local search engines into your code. I

Re: search engine module?

2001-10-18 Thread Stas Bekman
Kee Hinckley wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 People have been talking about backend search engines, but when I saw the subject I was thinking more about front end classes. In particular, last time I looked there wasn't a standard class for integrating local

Re: search engine module?

2001-10-18 Thread Kee Hinckley
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 At 12:56 AM +0800 10/19/01, Stas Bekman wrote: Kee Hinckley wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 People have been talking about backend search engines, but when I saw the subject I was thinking more about front end classes. In

Re: search engine module?

2001-10-18 Thread Stas Bekman
Kee Hinckley wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 At 12:56 AM +0800 10/19/01, Stas Bekman wrote: Kee Hinckley wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 People have been talking about backend search engines, but when I saw the subject I was thinking more

Re: search engine module?

2001-10-18 Thread Kee Hinckley
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 At 11:36 AM +0800 10/19/01, Stas Bekman wrote: Right, my point is that WWW::Search namespace is taken :) Ah. Sorry, my miscommunication. When I said that I ended up making a WWW::Search I should have put an an instance of in there instead of a.

Re: search engine module?

2001-10-17 Thread Stas Bekman
Daniel Sully wrote: Is the engine used at the math forum publiclicly available? I don't know. Why don't you ask them :) Once upon a time Stas Bekman shaped the electrons to say... the engine at mathforum does a great job, it's the best mailing list archive search engine that I've ever

Re: search engine module?

2001-10-17 Thread Oleg Bartunov
We use OpenFTS (http://openfts.sourceforge.net) at postgresql mailing list archive ( http://fts.postgresql.org). Regards, Oleg On Wed, 17 Oct 2001, Stas Bekman wrote: Ged Haywood wrote: Hi all, On Mon, 15 Oct 2001, Ask Bjoern Hansen wrote: On Fri, 12 Oct

Re: search engine module?

2001-10-17 Thread Daniel Sully
Is the engine used at the math forum publiclicly available? Once upon a time Stas Bekman shaped the electrons to say... the engine at mathforum does a great job, it's the best mailing list archive search engine that I've ever seen, in regards to searching Perl strings and code in general.

Re: search engine module?

2001-10-16 Thread Ged Haywood
Hi all, On Mon, 15 Oct 2001, Ask Bjoern Hansen wrote: On Fri, 12 Oct 2001, Perrin Harkins wrote: [...] Plus lots of other stuff like Glimpse and Swish which interface to C-based engines. I've had good luck with http://swish-e.org/2.2/ Please make sure that it's possible to do a

RE: search engine module?

2001-10-16 Thread Matt Sergeant
-Original Message- From: Ged Haywood [mailto:[EMAIL PROTECTED]] Hi all, On Mon, 15 Oct 2001, Ask Bjoern Hansen wrote: On Fri, 12 Oct 2001, Perrin Harkins wrote: [...] Plus lots of other stuff like Glimpse and Swish which interface to C-based engines. I've had

Re: search engine module?

2001-10-16 Thread Perrin Harkins
Please make sure that it's possible to do a plain ordinary literal text string search. Nothing fancy, no case-folding, no automatic removal of puctuation, nothing like that. Just a literal string. Last night I tried to find perl -V on all the search engines mentioned on the mod_perl home

Re: [OT] search engine module?

2001-10-16 Thread Bill Moseley
At 02:04 PM 10/16/2001 +0100, Ged Haywood wrote: Plus lots of other stuff like Glimpse and Swish which interface to C-based engines. I've had good luck with http://swish-e.org/2.2/ Please make sure that it's possible to do a plain ordinary literal text string search. Nothing fancy, no

Re: search engine module?

2001-10-15 Thread Matt J. Avitable
Hi, I've written a search engine that searches for jobs in a database based on keywords. I'm assembling a string of sql and then submitting it to the database based on the user's search criteria. It's working but is It sounds like you are writing a web front end for mysql. I'm not sure

Re: search engine module? [drifting OT DBI related]

2001-10-15 Thread Mark Maunder
Matt J. Avitable wrote: Hi, I've written a search engine that searches for jobs in a database based on keywords. I'm assembling a string of sql and then submitting it to the database based on the user's search criteria. It's working but is It sounds like you are writing a web front end

Re: search engine module? [drifting OT DBI related]

2001-10-15 Thread Mark Maunder
Mark Maunder wrote: I've started using MySQL's MATCH/AGAINST with fulltext indexes instead, and it is extremelly fast (!!), but am waiting for a feature that's available in mysql 4.0 (due end of this month) that allows you to use +word and -word syntax to specify required or unwanted

Re: search engine module?

2001-10-15 Thread Ask Bjoern Hansen
On Fri, 12 Oct 2001, Perrin Harkins wrote: [...] Plus lots of other stuff like Glimpse and Swish which interface to C-based engines. I've had good luck with http://swish-e.org/2.2/ - ask -- ask bjoern hansen, http://ask.netcetera.dk/ !try; do(); more than a billion impressions

search engine module?

2001-10-12 Thread Mark Maunder
I've written a search engine that searches for jobs in a database based on keywords. I'm assembling a string of sql and then submitting it to the database based on the user's search criteria. It's working but is really simple right now - it just does a logical AND with all the keywords the user

Re: search engine module?

2001-10-12 Thread Perrin Harkins
I don't want to reinvent the wheel and I'm sure this has been done a zillion times, so does anyone know of a module in CPAN that I can use for this? Have you tried searching on http://search.cpan.org/? DBIx::FullTextSearch DBIxTextIndex Search::InvertedIndex Plus lots of other stuff like