Skip to content

Commit 5320779

Browse files
authored
[DOCS] Removes low-level client docs and references (#6188) (#6198)
* [DOCS] Removes low-level client docs and references. * [DOCS] Further adjustments. * [DOCS] Adds note back without link.
1 parent ebb72c7 commit 5320779

15 files changed

+8
-844
lines changed

docs/client-concepts/connection-pooling/building-blocks/connection-pooling.asciidoc

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,10 @@ this is https://blogs.msdn.microsoft.com/adarshk/2005/01/02/understanding-system
2929

3030
So, what is a connection pool in NEST responsible for? It is responsible for managing the nodes in an Elasticsearch
3131
cluster to which a connection can be made and there is one instance of an `IConnectionPool` associated with an
32-
instance of `ConnectionSettings`. Since a <<lifetimes,single client and connection settings instance is recommended for the
33-
life of the application>>, the lifetime of a single connection pool instance will also be bound to the lifetime
34-
of the application.
32+
instance of `ConnectionSettings`. Since a single client and connection settings
33+
instance is recommended for the life of the application, the lifetime of a
34+
single connection pool instance will also be bound to the lifetime of the
35+
application.
3536

3637
There are five types of connection pool
3738

docs/client-concepts/connection/configuration-options.asciidoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ please modify the original csharp file found at the link and submit the PR with
1515
[[configuration-options]]
1616
=== Configuration options
1717

18-
Connecting to Elasticsearch with <<elasticsearch-net-getting-started,Elasticsearch.Net>> and <<nest-getting-started,NEST>> is easy, but
18+
Connecting to Elasticsearch with <<nest-getting-started,NEST>> is easy, but
1919
it's entirely possible that you'd like to change the default connection behaviour. There are a number of configuration options available
20-
on `ConnectionConfiguration` for the low level client and `ConnectionSettings` for the high level client that can be used to control
21-
how the clients interact with Elasticsearch.
20+
on `ConnectionSettings` that can be used to control how the client interact with
21+
Elasticsearch.
2222

2323
==== Options on ConnectionConfiguration
2424

docs/client-concepts/high-level/getting-started.asciidoc

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,6 @@ please modify the original csharp file found at the link and submit the PR with
1818
NEST is a high level Elasticsearch .NET client that still maps very closely to the original Elasticsearch API.
1919
All requests and responses are exposed through types, making it ideal for getting up and running quickly.
2020

21-
Under the covers, NEST uses the <<elasticsearch-net,Elasticsearch.Net low level client>> to dispatch requests and
22-
responses, using and extending many of the types within Elasticsearch.Net. The low level client itself is still
23-
exposed on the high level client through the `.LowLevel` property.
24-
2521
[float]
2622
=== Connecting
2723

@@ -45,8 +41,7 @@ var client = new ElasticClient(settings);
4541
----
4642

4743
In this example, a default index was also specified to use if no other index is supplied for the request or can be inferred for the
48-
POCO generic type parameter in the request. There are many other <<configuration-options,Configuration options>> on `ConnectionSettings`, which it inherits
49-
from `ConnectionConfiguration`, the type used to pass additional configuration options to the low level client in <<elasticsearch-net,Elasticsearch.Net>>.
44+
POCO generic type parameter in the request. There are many other <<configuration-options,Configuration options>> on `ConnectionSettings`.
5045

5146
TIP: Specifying a default index is _optional_ but NEST may throw an exception if no index can be inferred for a given request. To understand more around how
5247
an index can be specified for a request, see <<index-name-inference,Index name inference>>.
-65.4 KB
Binary file not shown.

docs/client-concepts/low-level/getting-started.asciidoc

Lines changed: 0 additions & 279 deletions
This file was deleted.

0 commit comments

Comments
 (0)