Re: Call Lucene default command line Search from PHP script

2008-04-12 Thread Raghu Ram
try using php java bridge http://php-java-bridge.sourceforge.net/ Its a way for using java objects directly in php. 2008/3/25 Mathieu Lecarme <[EMAIL PROTECTED]>: > milu07 a écrit : > > Hello, > > > > My machine is Ubuntu 7.10. I am working with Apache Lucene. I have done > > with > > indexer an

Re: Language identification ??

2008-03-14 Thread Raghu Ram
to complicate it further ... the text for which language identification has to be done is small, in most cases a short sentence like " I like Pepsi ". Can something be done for this ? On Fri, Mar 14, 2008 at 8:18 PM, Mathieu Lecarme <[EMAIL PROTECTED]> wrote: > Itamar Syn-Hershko a écrit : > > Fo

Language identification ??

2008-03-13 Thread Raghu Ram
Hi all, I guess this question is a bit off the track. Are there any language identification modules inside Lucene ??? If not can somebody please suggest me a good one. Thank You.

Re: Lucene in Action

2007-10-10 Thread Raghu Ram
Is there any document or book that discusses lucene internal details On 10/10/07, Peter W. <[EMAIL PROTECTED]> wrote: > > Cool! > > The quality of first LIA really shined even for > those familiar with Java but new to assertions > and unit tests. Can't wait to buy LIA2... > > Please accept th

Re: Group of documents.

2007-10-06 Thread Raghu Ram
But then how can i search for feeds ??? On 10/6/07, Alf Eaton <[EMAIL PROTECTED]> wrote: > > Raghu Ram wrote: > > Hi, > > We have an application in which we want to index feeds. Each feed > is a > > collection of articles and some other metadata. The problem

Group of documents.

2007-10-05 Thread Raghu Ram
Hi, We have an application in which we want to index feeds. Each feed is a collection of articles and some other metadata. The problem is that sometimes we want to search for feeds and sometimes for articles. As far as I know lucene doesn't provide any abstraction for grouping its documents.

Re: Multiple Documents sharing a common boost

2007-08-21 Thread Raghu Ram
ge the boost of a document > without deleting and readding it with the new boost. > > Best > Erick > > On 8/21/07, Raghu Ram <[EMAIL PROTECTED]> wrote: > > > > Is it possible to have multiple documents share a common boost? > > > > An example scenario is a

Multiple Documents sharing a common boost

2007-08-21 Thread Raghu Ram
Is it possible to have multiple documents share a common boost? An example scenario is as follows. The set of documents are clustered into some set of clusters. Each cluster has a unique clusterId. So each document has a cluster Id field that associates each document with its cluster. Each cluster

Updating an Index

2007-08-07 Thread Raghu Ram
Hi all, I am new to lucene. I would like to know if there can be any performance issues if we update the boost of a document often. Does this scale linearly with index size?