t; -Yonik
>
> On Sun, Jul 6, 2008 at 9:59 AM, saikrishna venkata pendyala
> <[EMAIL PROTECTED]> wrote:
> > Hi all,
> >
> > I am currently developing a distributed search engine using Lucene.
> >
> > I am able to search the multiple machines quite succes
Hi all,
I am currently developing a distributed search engine using Lucene.
I am able to search the multiple machines quite successfully. Each machine
using MultiSearcher to search the local indexes and I am creating
RemoteSearchable object with it.
The master machines searches these RemoteSea
Please check the path set for lucene-index in configuration file.
On Thu, Jul 3, 2008 at 10:11 AM, yugana <[EMAIL PROTECTED]> wrote:
>
> Hi,
>
> I am indexing content and searching using lucene. It is working fine when I
> use the simple servlet and jsp mechanism. I am able to search on the
> ind
Hi Sebastin ,
Why dont you index all data into single or some fixed number of indexes and
search over them. You can always restrict your search using the range query
based on user given inputs.
--Sai Krishna.
On Mon, Jun 23, 2008 at 7:27 AM, Daniel Noll <[EMAIL PROTECTED]> wrote:
> On Saturday
Hi Aditi,
As Rohit said, the best way to solve this problem is to have two fields for
indexing an email-id, one for the username and another for domain name.
Having two fields and using a Boolean Query with MUST condition should solve
your problem. You can also perform restricted search with the
; Erik
>
>
>
> On Feb 10, 2008, at 2:03 AM, saikrishna venkata pendyala wrote:
>
> > Hi,
> >
> > I am facing a small problem, some one please help me,
> >
> > I am using Whitespace analyzer, while both indexing and searching
> > the files.
> &
Hi,
I am facing a small problem, some one please help me,
I am using Whitespace analyzer, while both indexing and searching the files.
While indexing the analyzer is recognizing Ajit_(Agarkar)(I
found it using LUKE) as a single token.
But while searching{QueryParser parser = new QueryParser(fiel
Can I rewrite lucene to match the given query with some title ?
On 10/8/07, Karl Wettin <[EMAIL PROTECTED]> wrote:
>
>
> 8 okt 2007 kl. 18.52 skrev saikrishna venkata pendyala:
>
> > Can I use ucene with some changs, for the purpose of matching and
> > with OUT
&g
On 10/8/07, Karl Wettin <[EMAIL PROTECTED]> wrote:
>
>
> 8 okt 2007 kl. 18.13 skrev saikrishna venkata pendyala:
>
> > I need the name of the file in which the best matched title exists.
> > Don't I
> > need scoring here.
>
> I don't know ho
On 10/8/07, Karl Wettin <[EMAIL PROTECTED]> wrote:
>
>
> 8 okt 2007 kl. 17.40 skrev saikrishna venkata pendyala:
>
> > I have abt 17,00,000 documents in 1000 files. I need to index the
> > titles of
> > those documents with out storing the titles and s
Lucene creates an lock on the index before using it and then unlock the
index, after using it. If the lucene is interuptted and is closed by force
the, index remains in locked state and it cannot be used.
Generally in linux lucene lock information file is create in /tmp directory.
Delete the lock
.
On 10/8/07, Karl Wettin <[EMAIL PROTECTED]> wrote:
>
>
> 8 okt 2007 kl. 15.36 skrev saikrishna venkata pendyala:
>
> > Has any one tried to port lucene on to a mobile phone. I need a
> > text-based search engine for mobile phone as part of my project.
>
&g
Hai,
Has any one tried to port lucene on to a mobile phone. I need a
text-based search engine for mobile phone as part of my project.
Or is there any other J2ME based API which can be used to search the
text in mobile phones.
thanks,
Saikrishna.
Hai ,
Where does the lucene compute term frequency vector ? {filename,function
name}
Actually the task is to replace the all term frequencies with some
constant number(integer), how to do this ?
Any kind of help is appreciated .
Thanks in advance.
Hai ,
I was trying to store to document id's external.
I have found that lucene generates document id's linearly starting
from 0 and are not changed until any document is deleted.
but it did work for me.
How could I store document id's externally.
Hai ,
I was trying to store to document id's external.
I have found that lucene generates document id's linearly starting
from 0 and are not changed until any document is deleted.
but it did work for me.
Was the above one correct ? if not who could I store document id's
exte
e
From: saikrishna venkata pendyala <[EMAIL PROTECTED]>
To: java-user@lucene.apache.org
Sent: Monday, 22 January, 2007 10:07:27 AM
Subject: Re: Big size xml file indexing
Hai ,
I have indexed 6.2 gb xml file using lucene. What I did was
1 . I have splitted the 6.2gb file into
Hai ,
I have indexed 6.2 gb xml file using lucene. What I did was
1 . I have splitted the 6.2gb file into small files each of size
10mb.
2 . And then I worte a python script to quantize number
no.ofdocuments in each file.
Structure of my xml file is """
Hai all,
This is what I did.
"""
IndexReader reader = IndexReader.open("index");
//static final File INDEX_DIR = new File("index");
Directory directory = new RAMDirectory(index);
SpellChecker spellchecker = new SpellChecker(directory);
// To
Hai,
Can I store multiple values for same Field, with same field name for a
given document.
I mean is this operation permitted
doc.add(Field.text("title","T1"))
doc.add(Field.text("title","T2"))
doc.add(Field.text("title","T3"))
So when I ask for title it should return
20 matches
Mail list logo