mirror of
https://github.com/elastic/elasticsearch.git
synced 2025-06-28 17:34:17 -04:00
[DOCS] http -> https, remove outdated plugin docs (#60380)
Plugin discovery documentation contained information about installing Elasticsearch 2.0 and installing an oracle JDK, both of which is no longer valid. While noticing that the instructions used cleartext HTTP to install packages, this commit replaces HTTPs links instead of HTTP where possible. In addition a few community links have been removed, as they do not seem to exist anymore.
This commit is contained in:
parent
947186719e
commit
c7ac9e7073
80 changed files with 188 additions and 242 deletions
|
@ -5,7 +5,7 @@
|
|||
++++
|
||||
|
||||
Returns documents that contain terms similar to the search term, as measured by
|
||||
a http://en.wikipedia.org/wiki/Levenshtein_distance[Levenshtein edit distance].
|
||||
a https://en.wikipedia.org/wiki/Levenshtein_distance[Levenshtein edit distance].
|
||||
|
||||
An edit distance is the number of one-character changes needed to turn one term
|
||||
into another. These changes can include:
|
||||
|
|
|
@ -23,7 +23,7 @@ examples.
|
|||
==== Inline Shape Definition
|
||||
|
||||
Similar to the `geo_shape` type, the `geo_shape` query uses
|
||||
http://www.geojson.org[GeoJSON] to represent shapes.
|
||||
http://geojson.org[GeoJSON] to represent shapes.
|
||||
|
||||
Given the following index with locations as `geo_shape` fields:
|
||||
|
||||
|
|
|
@ -123,7 +123,7 @@ operator:
|
|||
quikc~ brwn~ foks~
|
||||
|
||||
This uses the
|
||||
http://en.wikipedia.org/wiki/Damerau-Levenshtein_distance[Damerau-Levenshtein distance]
|
||||
{wikipedia}/Damerau-Levenshtein_distance[Damerau-Levenshtein distance]
|
||||
to find all terms with a maximum of
|
||||
two changes, where a change is the insertion, deletion
|
||||
or substitution of a single character, or transposition of two adjacent
|
||||
|
|
|
@ -82,7 +82,7 @@ Index several documents to the `test` index.
|
|||
----
|
||||
PUT /test/_doc/1?refresh
|
||||
{
|
||||
"url": "http://en.wikipedia.org/wiki/2016_Summer_Olympics",
|
||||
"url": "https://en.wikipedia.org/wiki/2016_Summer_Olympics",
|
||||
"content": "Rio 2016",
|
||||
"pagerank": 50.3,
|
||||
"url_length": 42,
|
||||
|
@ -94,7 +94,7 @@ PUT /test/_doc/1?refresh
|
|||
|
||||
PUT /test/_doc/2?refresh
|
||||
{
|
||||
"url": "http://en.wikipedia.org/wiki/2016_Brazilian_Grand_Prix",
|
||||
"url": "https://en.wikipedia.org/wiki/2016_Brazilian_Grand_Prix",
|
||||
"content": "Formula One motor race held on 13 November 2016",
|
||||
"pagerank": 50.3,
|
||||
"url_length": 47,
|
||||
|
@ -107,7 +107,7 @@ PUT /test/_doc/2?refresh
|
|||
|
||||
PUT /test/_doc/3?refresh
|
||||
{
|
||||
"url": "http://en.wikipedia.org/wiki/Deadpool_(film)",
|
||||
"url": "https://en.wikipedia.org/wiki/Deadpool_(film)",
|
||||
"content": "Deadpool is a 2016 American superhero film",
|
||||
"pagerank": 50.3,
|
||||
"url_length": 37,
|
||||
|
|
|
@ -18,7 +18,7 @@ examples.
|
|||
==== Inline Shape Definition
|
||||
|
||||
Similar to the `geo_shape` query, the `shape` query uses
|
||||
http://www.geojson.org[GeoJSON] or
|
||||
http://geojson.org[GeoJSON] or
|
||||
https://en.wikipedia.org/wiki/Well-known_text_representation_of_geometry[Well Known Text]
|
||||
(WKT) to represent shapes.
|
||||
|
||||
|
|
|
@ -26,7 +26,7 @@ Returns documents that contain any indexed value for a field.
|
|||
<<query-dsl-fuzzy-query,`fuzzy` query>>::
|
||||
Returns documents that contain terms similar to the search term. {es} measures
|
||||
similarity, or fuzziness, using a
|
||||
http://en.wikipedia.org/wiki/Levenshtein_distance[Levenshtein edit distance].
|
||||
{wikipedia}/Levenshtein_distance[Levenshtein edit distance].
|
||||
|
||||
<<query-dsl-ids-query,`ids` query>>::
|
||||
Returns documents based on their <<mapping-id-field, document IDs>>.
|
||||
|
@ -74,4 +74,4 @@ include::terms-query.asciidoc[]
|
|||
|
||||
include::terms-set-query.asciidoc[]
|
||||
|
||||
include::wildcard-query.asciidoc[]
|
||||
include::wildcard-query.asciidoc[]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue