Skip to content

Latest commit

 

History

History
134 lines (77 loc) · 2.05 KB

getting-started.asciidoc

File metadata and controls

134 lines (77 loc) · 2.05 KB

Getting started

This page guides you through the installation process of the .NET client, shows you how to instantiate the client, and how to perform basic Elasticsearch operations with it.

Requirements

  • (…​)

Installation

To install the latest version of the client, run the following command:

Refer to the Installation page to learn more.

Connecting

You can connect to the Elastic Cloud using an API key and the Elasticsearch endpoint.

Your Elasticsearch endpoint can be found on the My deployment page of your deployment:

Finding Elasticsearch endpoint

You can generate an API key on the Management page under Security.

Create API key

For other connection options, refer to the Connecting section.

Operations

Time to use Elasticsearch! This section walks you through the basic, and most important, operations of Elasticsearch. For more operations and more advanced examples, refer to the [examples] page.

Creating an index

This is how you create the my_index index:

Indexing documents

This is a simple way of indexing a document:

Getting documents

You can get documents by using the following code:

Searching documents

This is how you can create a single match query with the .NET client:

Updating documents

This is how you can update a document, for example to add a new field:

Deleting documents

Deleting an index

Further reading

  • Refer to the [recommendations] page to learn more about how to use the client the most efficiently.