RE: Lucene index on iPhone

2009-05-06 Thread Aditya
] Sent: Wednesday, May 06, 2009 7:16 PM To: java-user@lucene.apache.org Subject: Re: Lucene index on iPhone http://www.lucidimagination.com/search/?q=Objective+C+port+of+Lucene suggests there is an Objective C port. Maybe that works? I haven't done any iPhone dev. On May 6, 2009, at 5:

Re: Lucene index on iPhone

2009-05-06 Thread Grant Ingersoll
http://www.lucidimagination.com/search/?q=Objective+C+port+of+Lucene suggests there is an Objective C port. Maybe that works? I haven't done any iPhone dev. On May 6, 2009, at 5:06 AM, Paul Libbrecht wrote: Shashi, the only java I know for iphone is with Cydia on jailbroken iphones. Is

Re: Lucene index on iPhone

2009-05-06 Thread Paul Libbrecht
Shashi, the only java I know for iphone is with Cydia on jailbroken iphones. Is this the type of things you're looking at? paul Le 06-mai-09 à 12:08, Shashi Kant a écrit : I am working on an iPhone application where the Lucene index needs to reside on-device (for multiple reasons). Has anyone

Re: Lucene index on iPhone

2009-05-06 Thread Danil ŢORIN
iPhone doesn't support java, so there is no way to run lucene on it. Creating a sqlite database and search inside it is compltetly different solution, which has nothing to do with Lucene. On Wed, May 6, 2009 at 13:08, Shashi Kant wrote: > Hi all, > > I am working on an iPhone application where t

Lucene index on iPhone

2009-05-06 Thread Shashi Kant
Hi all, I am working on an iPhone application where the Lucene index needs to reside on-device (for multiple reasons). Has anyone figured out a way to do that? As you might know the iPhone contains SQLite - could an index be embedded inside SQLite? or could it be resident separately as a file? Th