[X] The "/openclassroom/OC_SetupInstructionsUpdate1-1.txt" file could not be found or is not available. Please select another file.

Geographical search extension to the java lucene search engine


http://locallucene.sourceforge.net





Separate each tag with a space.

Release Date:

2008-12-08

Topics:

Licenses:

Operating System:

Intended Audience:

Programming Language:

Registered:

2007-10-18

Ratings and Reviews

Be the first to post a text review of Local Lucene. Rate and review a project by clicking thumbs up or thumbs down in the right column.

Project Feed

  • Code committed

    pjaol committed revision 177 to the Local Lucene SVN repository, changing 1 files

    posted by pjaol 23 days ago

  • Code committed

    pjaol committed revision 176 to the Local Lucene SVN repository, changing 1 files

    posted by pjaol 23 days ago

  • Tracker artifact added

    posted by ianibbo 32 days ago

  • Forum comment added

    jasonjudge commented on the RE: Is Distance from Lat,Long returned? forum thread

    posted by jasonjudge 80 days ago

  • Forum thread added

    posted by fdrake 80 days ago

  • Forum comment added

    jasonjudge commented on the RE: Is Distance from Lat,Long returned? forum thread

    posted by jasonjudge 80 days ago

  • LocalLucene R2.0 and LocalSolr R2.0 Released

    I'm pleased to announce that finally I've gotten around to creating a release of both locallucene and localsolr which go hand in hand with solr 1.3.0 http://lucene.apache.org/solr/#15+September+2008+-+Solr+1.3.0+Available There will be a future update to bring localsolr upto the latest trunk version of solr 1.4 dev. Changes include: * Memory issue with a static lucene sort comparator resolved within localsolr. * Support for solr sharding now part of the trunk. * Fix for lexical distance sorting in shard'ed deployment. * Updated to solr updateRequestProcessorChain method from updateRequestProcessor ** Note on upgrading If upgrading to this version from r1.5 you will be upgrading to the latest released version of solr-1.3.0 not the nightly build, as that has already moved ahead of the release. The released version is also supplied in localsolr/libs/solr/apache-solr-1.3.0.war To update your configuration you will need change your solrconfig.xml file to support solr's new updateRequestProcessorChain syntax <updateRequestProcessorChain> <processor class="com.pjaol.search.solr.update.LocalUpdateProcessorFactory"> <str name="latField">lat</str> <str name="lngField">lng</str> <int name="startTier">9</int> <int name="endTier">17</int> </processor> <processor class="solr.RunUpdateProcessorFactory" /> <processor class="solr.LogUpdateProcessorFactory" /> </updateRequestProcessorChain> This example is in the localsolr Changelog.txt as well. A final note, this will mark the begining of the end of locallucene and localsolr as we know it, but it does not mark the end of locallucene or localsolr both code bases are contributed to the Apache Software Foundation and are in the process of being integrated under https://issues.apache.org/jira/browse/INCUBATOR-77 And https://issues.apache.org/jira/browse/LUCENE-1387, https://issues.apache.org/jira/browse/SOLR-773 This will allow both a large base of developers to work on locallucene and localsolr, and also provide much faster responses to releases as it's being taken to be incorporated into the core of both lucene and solr. So with that, I shall do one more update to get us to the trunk of solr, and maybe lucene, and then concentrate on helping the transition to Apache. I'd like to thank you for your support and contributions throughout the year, and hope you'll continue while this transitions to Apache. Thanks Patrick O'Leary -- Local Lucene, the geographical search engine, make your search local.

    posted by pjaol 341 days ago

  • File released: /localsolr/localsolr_r2.0/localsolr_r2.0.tar.gz

    posted 342 days ago

  • File released: /locallucene/locallucene_r2.0/locallucene_r2.0.tar.gz

    posted 342 days ago

  • localsolr localsolr_r2.0 file released: localsolr_r2.0.tar.gz

    $File: $ Revision 1.1 2007/09/18 03:51:22 pjaol ------------------ Update the updateChainRequestProcessor to the solr-1.3 release Change the readme to reflect conf change of processor to <updateRequestProcessorChain> <processor class="com.pjaol.search.solr.update.LocalUpdateProcessorFactory"> <str name="latField">lat</str> <str name="lngField">lng</str> <int name="startTier">9</int> <int name="endTier">17</int> </processor> <processor class="solr.RunUpdateProcessorFactory" /> <processor class="solr.LogUpdateProcessorFactory" /> </updateRequestProcessorChain> ------------------ Updated com.pjaol.search.solr.component.LocalSolrQueryComponent to solrs search component Can now be instantiated in solrconfig.xml as <!-- local lucene request handler --> <searchComponent name="localsolr" class="com.pjaol.search.solr.component.LocalSolrQueryComponent" /> <requestHandler name="geo" class="org.apache.solr.handler.component.SearchHandler"> <arr name="components"> <str>localsolr</str> <str>facet</str> <str>mlt</str> <str>highlight</str> <str>debug</str> </arr> </requestHandler> ------------------ Updated to the latest version of solr Removal of com.pjaol.search.solr.LocalResponseWritter LocalSolr now uses solrs native query response writers, this eliminates the need for the wt=geoX parameter. The configuration for the writer in the solrconfig.xml is no longer needed. <!-- local lucene response writer --> <queryResponseWriter name="geoX" class="com.pjaol.search.solr.LocalResponseWritter"/> Can now be removed. Update of the Cartesian Filter to now accept shapes. This can be a first step towards a poly search, furture steps are required to create shapes other than a circle. Fixed a bug where searches of 100 miles + were not generating the right shape. Updated the LocalSolrQueryRequestHandler to allow it to be called from solr-281 searchHandler configuration. --------------------------------------- Update of LocalSolrQueryComponent and LocalSolrRequestHandler to enable custom latitude longitude fields to be set in the solrconfig.xml with: <requestHandler name="geo" class="com.pjaol.search.solr.LocalSolrRequestHandler"> <str name="latField">lat</str> <str name="lngField">lng</str> </requestHandler>` --------------------------------------- Addition of a ChainUpdateProcessorFactory to enable CartesianTier indexing Enable in the solrconfig.xml using: <updateRequestProcessor> <factory name="standard" class="solr.ChainedUpdateProcessorFactory" default="true"> <chain class="com.pjaol.search.solr.update.LocalUpdateProcessorFactory"> <str name="latField">lat</str> <str name="lngField">lng</str> <int name="startTier">9</int> <int name="endTier">17</int> </chain> <chain class="solr.LogUpdateProcessorFactory" > <!-- <int name="maxNumToLog">100</int> --> </chain> <chain class="solr.RunUpdateProcessorFactory" /> </factory> </updateRequestProcessor> and in the fields node of schema.xml with: <dynamicField name="_local*" type="sdouble" indexed="true" stored="true"/> --------------------------------------- Release 1.0 Depreciated LocalRequestHandler, and created LocalSolrRequestHandler to fit inline with solr-281 refactoring. Added optional user cache, which can be configured in the solconfig.xml similar to <cache name="distanceCache" class="solr.search.LRUCache" size="4096" initialSize="2048" autowarmCount="0"/> ** Note Cache name must be distanceCache Changed the filter format to now use a CacheWrapperFilter query to reduce the amount of bits passed to the Radial Filter. This increases performance significantly for most queries. ------------------------------------ Moved sorting to solr's sort parameter sort=geo_distance asc sort=geo_distance asc, field1 asc, field2 desc etc.... ------------------------------------ Created clean up procedures for distance sorting. ------------------------------------ Updated to solr version 1.3 to the local request handler ------------------------------------ Created a change log

    posted 342 days ago

Rate and Review

Be the first person to add a text review.

Would you recommend this project?






<

Related Projects

Local Lucene Actions

Thanks for your rating!

Would you also like to write a review?





Skip Review