mirror of https://github.com/apache/lucene.git
LUCENE-9229: Fix some broken links
Change some wiki -> cwiki links Signed-off-by: Jan Høydahl <janhoy@apache.org>
This commit is contained in:
parent
79a4a680e7
commit
8389b87e39
|
@ -11332,7 +11332,7 @@ Upgrading from Solr 4.7
|
|||
Oracle Java 7 or OpenJDK 7, be sure to not use the GA build 147 or
|
||||
update versions u40, u45 and u51! We recommend using u55 or later.
|
||||
An overview of known JVM bugs can be found on
|
||||
http://wiki.apache.org/lucene-java/JavaBugs
|
||||
https://cwiki.apache.org/confluence/display/lucene/JavaBugs
|
||||
|
||||
* ZooKeeper is upgraded from 3.4.5 to 3.4.6.
|
||||
|
||||
|
@ -14644,7 +14644,7 @@ Other Changes
|
|||
in the migration of existing clients. (yonik)
|
||||
|
||||
* SOLR-3691: SimplePostTool: Mode for crawling/posting web pages
|
||||
See http://wiki.apache.org/solr/ExtractingRequestHandler for examples (janhoy)
|
||||
See https://lucene.apache.org/solr/guide/post-tool.html for examples (janhoy)
|
||||
|
||||
* SOLR-3707: Upgrade Solr to Tika 1.2 (janhoy)
|
||||
|
||||
|
@ -14774,7 +14774,7 @@ New Features
|
|||
same name. (hossman, steffkes)
|
||||
|
||||
* SOLR-1280: Added commented-out example of the new script update processor
|
||||
to the example configuration. See http://wiki.apache.org/solr/ScriptUpdateProcessor (ehatcher)
|
||||
to the example configuration. (ehatcher)
|
||||
|
||||
* SOLR-3672: SimplePostTool: Improvements for posting files
|
||||
Support for auto mode, recursive and wildcards (janhoy)
|
||||
|
@ -14913,7 +14913,7 @@ Other Changes
|
|||
================== 4.0.0-ALPHA ==================
|
||||
More information about this release, including any errata related to the
|
||||
release notes, upgrade instructions, or other changes may be found online at:
|
||||
https://wiki.apache.org/solr/Solr4.0
|
||||
https://cwiki.apache.org/confluence/display/solr/Solr4.0
|
||||
|
||||
|
||||
Versions of Major Components
|
||||
|
@ -16738,7 +16738,7 @@ New Features
|
|||
Great Circle (haversine), Manhattan, Euclidean and String (using the
|
||||
StringDistance methods in the Lucene spellchecker).
|
||||
Also added geohash(), deg() and rad() convenience functions.
|
||||
See http://wiki.apache.org/solr/FunctionQuery. (gsingers)
|
||||
See https://lucene.apache.org/solr/guide/function-queries.html (gsingers)
|
||||
|
||||
* SOLR-1553: New dismax parser implementation (accessible as "edismax")
|
||||
that supports full lucene syntax, improved reserved char escaping,
|
||||
|
|
|
@ -584,7 +584,7 @@ Consider the following example query with faceting:
|
|||
|
||||
Because everything is already constrained by the filter `doctype:pdf`, the `facet.field=doctype` facet command is currently redundant and will return 0 counts for everything except `doctype:pdf`.
|
||||
|
||||
To implement a multi-select facet for doctype, a GUI may want to still display the other doctype values and their associated counts, as if the http://doctypepdf[`doctype:pdf`] constraint had not yet been applied. For example:
|
||||
To implement a multi-select facet for doctype, a GUI may want to still display the other doctype values and their associated counts, as if the `doctype:pdf` constraint had not yet been applied. For example:
|
||||
|
||||
[source,text]
|
||||
----
|
||||
|
|
|
@ -35,7 +35,7 @@ There are several points to keep in mind:
|
|||
* The heap allocated should be as small as possible while maintaining good performance. 8-16G is quite common, and larger heaps are sometimes used. When heaps grow to larger sizes, it is imperative to test extensively before going to production.
|
||||
* The G1GC garbage collector is currently preferred when using a JVM that supports it (Java 9 and later)
|
||||
* Modern hardware can be configured with hundreds of gigabytes of physical RAM and many CPUs. It is often better in these cases to run multiple JVMs, each with a limited amount of memory allocated to their heaps.
|
||||
* It's good practice to periodically re-analyze the GC logs and/or monitor with <<metrics-reporting.adoc,Metrics Reporting>> to see if the memory usage has changed due to changes in your application, number of documents, etc.
|
||||
* It's good practice to periodically re-analyze the GC logs and/or monitor with <<metrics-reporting.adoc#metrics-reporting,Metrics Reporting>> to see if the memory usage has changed due to changes in your application, number of documents, etc.
|
||||
* On *nix systems, we recommend that Solr be run with the "oom killer script" (see solr/bin/oom_solr.sh). This will forcefully stop Solr when the heap is exhausted rather than continue in an indeterminate state.
|
||||
* All current (Java 11) garbage collectors can hit "stop the world" collections, which suspend the JVM until completed. If, through monitoring, these collections are frequent and greater than your application can tolerate, additional tuning should be considered. "Stop the world" pauses greater than 5 seconds are rarely acceptable, and having them be less than 1 second is desirable.
|
||||
|
||||
|
|
|
@ -307,7 +307,7 @@ See the <<velocity-response-writer.adoc#velocity-response-writer,Velocity Respon
|
|||
|
||||
== Smile Response Writer
|
||||
|
||||
The Smile format is a JSON-compatible binary format, described in detail here: http://wiki.fasterxml.com/SmileFormat.
|
||||
The Smile format is a JSON-compatible binary format, described in detail here: https://en.wikipedia.org/wiki/Smile_%28data_interchange_format%29[https://en.wikipedia.org/wiki/Smile_(data_interchange_format)]
|
||||
|
||||
== XLSX Response Writer
|
||||
|
||||
|
|
|
@ -461,4 +461,4 @@ If `versionField` is specified as a list, then this parameter too must be specif
|
|||
`supportMissingVersionOnOldDocs`::
|
||||
This boolean parameter defaults to `false`, but if set to `true` allows any documents written *before* this feature is enabled, and which are missing the `versionField`, to be overwritten.
|
||||
|
||||
Please consult the {solr-javadocs}/solr-core/org/apache/solr/update/processor/DocBasedVersionConstraintsProcessorFactory.html[DocBasedVersionConstraintsProcessorFactory javadocs] and https://git1-us-west.apache.org/repos/asf?p=lucene-solr.git;a=blob;f=solr/core/src/test-files/solr/collection1/conf/solrconfig-externalversionconstraint.xml;hb=HEAD[test solrconfig.xml file] for additional information and example usages.
|
||||
Please consult the {solr-javadocs}/solr-core/org/apache/solr/update/processor/DocBasedVersionConstraintsProcessorFactory.html[DocBasedVersionConstraintsProcessorFactory javadocs] and https://github.com/apache/lucene-solr/blob/master/solr/core/src/test-files/solr/collection1/conf/solrconfig-externalversionconstraint.xml[test solrconfig.xml file] for additional information and example usages.
|
||||
|
|
Loading…
Reference in New Issue