Re: PHP and Lucene integration

2006-06-06 Thread Paul Borgermans
Hi I'm currently doing just that: using the php-java bridge. Here the goal is to integrate Java-Lucene with a php4 based CMS (eZ publish), so the Zend framework is not an answer (and premature imho). The code we've written is a bit CMS specific, but you should be able to to do the same quite fast

Re: PHP and Lucene integration

2006-06-06 Thread Peter A. Daly
On 6/6/06, Alexander MASHTAKOV <[EMAIL PROTECTED]> wrote: The other thing - performance. In order to run faster - it's necessary to have opened index, rather then open and close it for each request. Index updates have to be serialized somehow and after the update, it has to be re-opened again.

Re: PHP and Lucene integration

2006-06-06 Thread Alexander MASHTAKOV
Has anyone tried to solve this task ? --- Alexander MASHTAKOV <[EMAIL PROTECTED]> wrote: > Hi, > > Thank you for reply. > I've also had a look at Zend framework. But, at > this moment they do not support unicode, > which is a mandatory requirement in my case. > > The other thing - performanc

Re: PHP and Lucene integration

2006-06-06 Thread Alexander MASHTAKOV
Hi, Thank you for reply. I've also had a look at Zend framework. But, at this moment they do not support unicode, which is a mandatory requirement in my case. The other thing - performance. In order to run faster - it's necessary to have opened index, rather then open and close it for each req

Re: PHP and Lucene integration

2006-06-06 Thread Vinay Yadav
Hi, Zend Search Framework can help you. Take a look at http://framework.zend.com/manual/en/zend.search.html - Zend_Search_Lucene is a general purpose text search engine written entirely in PHP 5. Since it stores its index on the files

Re: PHP and Lucene integration

2006-06-06 Thread Peter A. Daly
Other replies mention SOLR. I'm fairly new to SOLR, but have used Lucene quite a bit. Based on your situation, it certainly sounds like SOLR is worth looking into. I was able to convert a portion of one of my sites from being SQL powered to SOLR powered in about a days work, which includes lear

RE: PHP and Lucene integration

2006-06-06 Thread Rob Staveley (Tom)
alk through a socket. -Original Message- From: Alexander MASHTAKOV [mailto:[EMAIL PROTECTED] Sent: 06 June 2006 14:26 To: java-user@lucene.apache.org Subject: PHP and Lucene integration Hi Folks, I'm working on project that is going to have free-text search mechanism. The project is comple

Re: PHP and Lucene integration

2006-06-06 Thread Mike Richmond
I am also working on interfacing Lucene with PHP. Here are a couple options that I have found useful: Call Java directly from PHP: http://php-java-bridge.sourceforge.net/ Solr - Interacts w/ Lucene via XML requests http://incubator.apache.org/solr/index.html There is mention of a PHP interface

PHP and Lucene integration

2006-06-06 Thread Alexander MASHTAKOV
Hi Folks, I'm working on project that is going to have free-text search mechanism. The project is completely based on open source technologies, such as MySQL and PHP. I'm reading about Lucene and think that this is probably the first candidate. BTW, the (obvious) question is: "How to integrate P