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)
For querying, we have PHP talking to our Java application through sockets and XML. Queries are set up in PHP, creating an XML document which corresponds to a subset of the subclasses of http://lucene.apache.org/java/docs/api/org/apache/lucene/search/Query.html. If we'd had the PHP skill set at the

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