[appengine-java] Re: full text search tutorial wanted

2010-05-28 Thread Toby
I use the code done by Nicolas and I can only say that it works great. There is one limitation, though. It assumes AND between the keywords that you search. I modified that by breaking it up in several queries but I think that code is not very efficient. In the longer term there is fulltext search

Re: [appengine-java] Re: full text search tutorial wanted

2010-05-28 Thread Andrés Cerezo
You can use gaelucene code.google.com/p/gaelucene/ you have to index the information in your pc and after upload the information indexed. 2010/5/28 Toby toby.ro...@gmail.com: I use the code done by Nicolas and I can only say that it works great. There is one limitation, though. It assumes AND

[appengine-java] Re: full text search tutorial wanted

2010-05-28 Thread Nacho Coloma
If your website is public you can also use the google search Ajax API (with a site: query) and parse the returned URLs if needed. On May 28, 10:30 am, Andrés Cerezo acerezoguil...@gmail.com wrote: You can use gaelucene code.google.com/p/gaelucene/ you have to index the information in your pc

[appengine-java] Re: full text search tutorial wanted

2010-05-28 Thread Tristan
For what you're trying to do perhaps you should consider this instead: Create a Google Apps account. Use the Goole Document List API to upload the documents to an application account in Google Apps, something like (applicat...@myapp.com). Then when somebody submits a query, just use Google

Re: [appengine-java] Re: full text search tutorial wanted

2010-05-28 Thread nicolas melendez
Tristan, your solution is creative and good, but you have a limit of 5000 documents per account in google documents. NM On Fri, May 28, 2010 at 12:53 PM, Tristan tristan.slomin...@gmail.comwrote: For what you're trying to do perhaps you should consider this instead: Create a Google Apps

[appengine-java] Re: full text search tutorial wanted

2010-05-28 Thread king
thanks everybody for the feedback :) On May 28, 10:17 am, nicolas melendez nfmelen...@gmail.com wrote: Tristan, your solution is creative and good, but you have a limit of 5000 documents per account in google documents. NM On Fri, May 28, 2010 at 12:53 PM, Tristan