Lucene Spatial

2010-03-30 Thread Guillermo Payet
basic lucene search using it? This is the best I've found so far: http://www.mail-archive.com/java-dev@lucene.apache.org/msg36727.html We don't use Solr. Just lucene + locallucene. Thanks --G -- Guillermo Payet L O C A L H A R V E S T http://www.localharvest.org http

Re: geographical searches

2005-05-03 Thread Guillermo Payet
would like to reimplement it in some "clean way" so that it can be rolled into the project. --G -- Guillermo Payet L O C A L H A R V E S T http://www.localharvest.org Every Morning I awake torn between a desire to save the world and an inclination to s

Re: geographical searches

2005-05-02 Thread Guillermo Payet
gt; Tim > > > ----- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > -- Guillermo Payet L O C A L H A R V E S T http://www.localharvest.org Ev

Re: geographical searches

2005-05-01 Thread Guillermo Payet
eoSearcher("path_to_index_file", quadTree); hits = geoQuery.search(rect,filter); Would that be right? --G On Sun, May 01, 2005 at 01:14:25PM -0700, Guillermo Payet wrote: > Hi, > > I started implementing geographical searches yesterday, using BBN's QuadTree > impleme

Re: geographical searches

2005-05-01 Thread Guillermo Payet
ce issues with this? --G On Sun, May 01, 2005 at 01:14:25PM -0700, Guillermo Payet wrote: > Hi, > > I started implementing geographical searches yesterday, using BBN's QuadTree > implementaion as the spacial index. I first implemented a new "GeoFilter" > c

geographical searches

2005-05-01 Thread Guillermo Payet
Hi, I started implementing geographical searches yesterday, using BBN's QuadTree implementaion as the spacial index. I first implemented a new "GeoFilter" class to filter queries to "all items within a rectangle". That was pretty easy and it's now working beautifuly, and very fast too. See be

Re: running out of file handles

2005-04-15 Thread Guillermo Payet
anks --G > > Erik > > On Apr 15, 2005, at 12:33 PM, Guillermo Payet wrote: > > >Hi Doug, > > > >I'm using: lucene-1.4-final.jar > > > > > > > >On Fri, Apr 15, 2005 at 08:52:54AM -0700, Doug Cutting wrote: > >>Guil

Re: running out of file handles

2005-04-15 Thread Guillermo Payet
Hi Doug, I'm using: lucene-1.4-final.jar On Fri, Apr 15, 2005 at 08:52:54AM -0700, Doug Cutting wrote: > Guillermo Payet wrote: > >In any case... the point being that we want to just have one > >IndexSearcher for the whole App. > > > >But.. were starting t

Re: running out of file handles

2005-04-14 Thread Guillermo Payet
> Are you opening a new IndexSearcher when you see a new index version > (using IndexReader.getCurrentVersion())? If so, you may need to > explicitly call close() on your IndexSearcher before opening a new > one. no.. I'm not doing that.. but the index get's updated very seldom. Maybe 4 times a

Re: running out of file handles

2005-04-14 Thread Guillermo Payet
oh.. sorry, I apologize.. I now realize I should have posted this to java-user list instead --G On Thu, Apr 14, 2005 at 09:12:41PM -0700, Guillermo Payet wrote: > Hi, > > We have one instance of IndexSearcher that's used for our entire > web application. It's in

Re: Using Lucene, longitude-latitude, and interacting on "search"

2005-04-11 Thread Guillermo Payet
/algorithm. If the > users database is a based on a currenct DB, then it will probably have > a "spatial extension". > > If you want Lucene to do an efficient index search on lat/lon then > you'll have to implement a spatial index. Look for "space filling > curve