Dear Wiki user, You have subscribed to a wiki page or wiki category on "Solr Wiki" for change notification.
The following page has been changed by ryan: http://wiki.apache.org/solr/Solr1%2e3 ------------------------------------------------------------------------------ - = Solr1.3 = - - Solr 1.3 has not yet been released. + <!> Solr 1.3 has not yet been released. If you found a link to this page in some documentation it was there to alert you to the fact that it described a feature that is expected to be included in the Solr 1.3 release when it eventually happens. Jira can show you [http://issues.apache.org/jira/browse/SOLR/fixforversion/12312486 issues that have been (or hope to be) incorporated into the 1.3 release] @@ -12, +10 @@ After the 1.3 release is made, this wiki will provide some information about the release + [[Anchor(Deprication)]] + == @Deprication == + In Solr 1.3, many classes were moved around. While it is possible to run classes compiled against 1.2 in 1.3, it is reccomended to update your class references soon. + + Specifically: + * many classes from ''org.apache.util'' to ''org.apache.common.util'' + * many classes from ''org.apache.solr.request'' to ''org.apache.solr.common.params'' + * ''org.apache.solr.request.StandardRequestHandler'' moved to ''org.apache.solr.handler.StandardRequestHandler'' + * ''org.apache.solr.request.DisMaxRequestHandler'' moved to ''org.apache.solr.handler.DisMaxRequestHandler'' + + /!\ NOTE - the following is preliminary documentation for the not yet added SOLR-414 + + The ''init()'' method for RequestHandler, TokenFilterFactory, and TokenizerFactory is now deprecated, a replacement will be added in a future solr version. The change will be: + {{{ + TokenFilterFactory/TokenizerFactory .init( Map<String,String> args ) + RequestHandler.init(NamedList args) + }}} + to + {{{ + TokenFilterFactory/TokenizerFactory .init( SolrConfig config, Map<String,String> args ) + RequestHandler.init(SolrCore core, NamedList args) + }}} + + Until this change is made, these plugins can use [http://svn.apache.org/repos/asf/lucene/solr/trunk/src/java/org/apache/solr/util/plugin/DeprecatedPluginUtils.java DeprecatedPluginUtils.java] to access the current SolrConfig/SolrCore during initialization. + + + - = Pre-release TODO = + == Pre-release TODO == * Remove [http://svn.apache.org/repos/asf/lucene/solr/trunk/src/java/org/apache/solr/handler/XppUpdateRequestHandler.java XppUpdateRequestHandler.java] and all XPP library files/references. - = Solrj TODO = + == Solrj TODO == This will be the first official release - we should make sure the API is something we want to live with...
