Re: [lazarus] Somewhat OT: The massive db-less search

2006-03-01 Thread A.J. Venter
. Venter [mailto:[EMAIL PROTECTED] Sent: 28 February 2006 17:44 PM To: lazarus@miraclec.com Subject: Re: [lazarus] Somewhat OT: The massive db-less search On Tuesday 28 February 2006 17:24, Vincent Snijders wrote: If java is an option for you: http://lucene.apache.org/java/docs

[lazarus] Somewhat OT: The massive db-less search

2006-02-28 Thread A.J. Venter
Right, the final missing feature of OpenBook is to be able to search for phrases INSIDE the books, now the logical way would be to just check each book and determine whether or not it contains a matching phrase... except that there are 12000 of them. For the author/title searching it´s easy, I

Re: [lazarus] Somewhat OT: The massive db-less search

2006-02-28 Thread Michael Van Canneyt
On Tue, 28 Feb 2006, A.J. Venter wrote: Right, the final missing feature of OpenBook is to be able to search for phrases INSIDE the books, now the logical way would be to just check each book and determine whether or not it contains a matching phrase... except that there are 12000 of them.

Re: [lazarus] Somewhat OT: The massive db-less search

2006-02-28 Thread Eduardo
Take a look to Managing Gigabytes, a book which explauin how to do a mixed database/compression algorithm. HTH _ To unsubscribe: mail [EMAIL PROTECTED] with unsubscribe as the Subject archives at

Re: [lazarus] Somewhat OT: The massive db-less search

2006-02-28 Thread Vincent Snijders
If java is an option for you: http://lucene.apache.org/java/docs/ If not, maybe you can port it to fpc. We use this (the .NET port) at work to index all publications of Statistic Netherlands. Searching is fast. Vincent. _

Re: [lazarus] Somewhat OT: The massive db-less search

2006-02-28 Thread A.J. Venter
On Tuesday 28 February 2006 17:24, Vincent Snijders wrote: If java is an option for you: http://lucene.apache.org/java/docs/ If not, maybe you can port it to fpc. We use this (the .NET port) at work to index all publications of Statistic Netherlands. Searching is fast. Thanks, I am looking

Re: [lazarus] Somewhat OT: The massive db-less search

2006-02-28 Thread Vincent Snijders
A.J. Venter wrote: On Tuesday 28 February 2006 17:24, Vincent Snijders wrote: If java is an option for you: http://lucene.apache.org/java/docs/ If not, maybe you can port it to fpc. We use this (the .NET port) at work to index all publications of Statistic Netherlands. Searching is fast.