RE: If you could have one feature in Solr...

2010-02-26 Thread Stuart Yeates
The indexer looking for an xml:lang attribute on text fields and using the value to pick, tokeniser, dictionaries, etc, etc automatically (and knowing to look for them in the standard places). cheers stuart

Re: Log of zero result searches

2009-12-15 Thread stuart yeates
Chris Hostetter wrote: See Also: http://en.wikipedia.org/wiki/Thread_hijacking You may want to update that link, since that wikipedia page has been deleted for some time. cheers stuart -- Stuart Yeates http://www.nzetc.org/ New Zealand Electronic Text Centre http

RE: How to do a reverse distance search?

2009-07-10 Thread Stuart Yeates
The easiest modification is to use: calc_square_of_distance(CLIENT_LAT, CLIENT_LONG, lat, long) maxSquareOfTravelDist This has the same ordering as before, but is much cheaper to calculate. You can then calculate the actual distance in the GUI, where you're only showing a handful of values.