Re : porting lucene on to mobile phone

2007-10-08 Thread saikrishna venkata pendyala
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.

Re: Re : porting lucene on to mobile phone

2007-10-08 Thread Karl Wettin
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. There was some discussion about this here on the forums some year(s?) ago. The major problem back

Re: Re : porting lucene on to mobile phone

2007-10-08 Thread saikrishna venkata pendyala
Hai, Thank you for responding. 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 storing the file name. When ever I issue a query I need to get the name of the file in which that document exists. thanks,

Re: Re : porting lucene on to mobile phone

2007-10-08 Thread Karl Wettin
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 storing the file name. Not sure I understand what you say here. You want to create 1,7 million documents

Re: Re : porting lucene on to mobile phone

2007-10-08 Thread saikrishna venkata pendyala
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 storing the file name. Not sure I understand what you

Re: Re : porting lucene on to mobile phone

2007-10-08 Thread Karl Wettin
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 how you would decide what the best matched document is without scoring the results? -- karl

Re: Re : porting lucene on to mobile phone

2007-10-08 Thread saikrishna venkata pendyala
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 how you would decide what the best matched document is without scoring

Re: Re : porting lucene on to mobile phone

2007-10-08 Thread Karl Wettin
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 SCORING the query given. Sorry, but I don't understand your question? In order to run Lucene on J2ME you need CLDC1.1 or later, alternatively modify Lucene

Re: Re : porting lucene on to mobile phone

2007-10-08 Thread saikrishna venkata pendyala
Sorry I couldn't frame my question correctly due to typos. this is what you said earlier You only require boolean term queries? And no scoring, sorting or anything like that? In that case, it should not be that hard to rewrite Lucene for your needs. Can I rewrite lucene to match the given

Re: Re : porting lucene on to mobile phone

2007-10-08 Thread Chris Hostetter
: You want to create 1,7 million documents containing a short and : indexed field: title, and a stored field: file name? : Yes this is what I need. if i may make a modest proposal: i would suggest that before you dig ito the details of what it takes to get LUcene working on a mobile

Re: Re : porting lucene on to mobile phone

2007-10-08 Thread Karl Wettin
8 okt 2007 kl. 19.17 skrev saikrishna venkata pendyala: You only require boolean term queries? And no scoring, sorting or anything like that? In that case, it should not be that hard to rewrite Lucene for your needs. Can I rewrite lucene to match the given query with some title ? Sorry,