Skip to content

Commit 3ee7244

Browse files
Merge pull request #3147 from milvus-io/AnthonyTsu1984-patch-1
Update quickstart.md
2 parents 1862d43 + 2ca740f commit 3ee7244

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

site/en/getstarted/quickstart.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Milvus is an open-source vector database that suits AI applications of every siz
1515

1616
## Install Milvus
1717

18-
In this guide we use Milvus Lite, a python library included in `pymilvus` that can be embedded into the client application. Milvus also supports deployment on [Docker](https://milvus.io/docs/install_standalone-docker.md) and [Kubernetes](https://milvus.io/docs/install_cluster-milvusoperator.md) for production use cases.
18+
In this guide we use Milvus Lite, a python library included in `pymilvus` that can be embedded into the client application. Milvus also supports deployment on [Docker](install_standalone-docker.md) and [Kubernetes](install_cluster-milvusoperator.md) for production use cases.
1919

2020
Before starting, make sure you have Python 3.8+ available in the local environment. Install `pymilvus` which contains both the python client library and Milvus Lite:
2121

@@ -55,8 +55,8 @@ client.create_collection(
5555
In the above setup,
5656

5757
- The primary key and vector fields use their default names ("id" and "vector").
58-
- The metric type (vector distance definition) is set to its default value ([COSINE](https://milvus.io/docs/metric.md#Cosine-Similarity)).
59-
- The primary key field accepts integers and does not automatically increments (namely not using [auto-id feature](https://milvus.io/docs/schema.md))
58+
- The metric type (vector distance definition) is set to its default value ([COSINE](metric.md#Cosine-Similarity)).
59+
- The primary key field accepts integers and does not automatically increments (namely not using [auto-id feature](schema.md))
6060
Alternatively, you can formally define the schema of the collection by following this [instruction](https://milvus.io/api-reference/pymilvus/v2.4.x/MilvusClient/Collections/create_schema.md).
6161

6262
## Prepare Data
@@ -218,13 +218,13 @@ print(res)
218218
data: ["[{'id': 4, 'distance': 0.27030569314956665, 'entity': {'text': 'Computational synthesis with AI algorithms predicts molecular properties.', 'subject': 'biology'}}, {'id': 3, 'distance': 0.16425910592079163, 'entity': {'text': 'Machine learning has been used for drug design.', 'subject': 'biology'}}]"] , extra_info: {'cost': 0}
219219
```
220220

221-
By default, the scalar fields are not indexed. If you need to perform metadata filtered search in large dataset, you can consider using fixed schema and also turn on the [index](https://milvus.io/docs/scalar_index.md) to improve the search performance.
221+
By default, the scalar fields are not indexed. If you need to perform metadata filtered search in large dataset, you can consider using fixed schema and also turn on the [index](scalar_index.md) to improve the search performance.
222222

223223
In addition to vector search, you can also perform other types of searches:
224224

225225
### Query
226226

227-
A query() is an operation that retrieves all entities matching a criteria, such as a [filter expression](https://milvus.io/docs/boolean.md) or matching some ids.
227+
A query() is an operation that retrieves all entities matching a criteria, such as a [filter expression](boolean.md) or matching some ids.
228228

229229
For example, retrieving all entities whose scalar field has a particular value:
230230

@@ -291,10 +291,10 @@ client.drop_collection(collection_name="demo_collection")
291291

292292
## Learn More
293293

294-
Milvus Lite is great for getting started with a local python program. If you have large scale data or would like to use Milvus in production, you can learn about deploying Milvus on [Docker](https://milvus.io/docs/install_standalone-docker.md) and [Kubernetes](https://milvus.io/docs/install_cluster-milvusoperator.md). All deployment modes of Milvus share the same API, so your client side code doesn't need to change much if moving to another deployment mode. Simply specify the [URI and Token](https://milvus.io/api-reference/pymilvus/v2.4.x/MilvusClient/Client/MilvusClient.md) of a Milvus server deployed anywhere:
294+
Milvus Lite is great for getting started with a local python program. If you have large scale data or would like to use Milvus in production, you can learn about deploying Milvus on [Docker](install_standalone-docker.md) and [Kubernetes](install_cluster-milvusoperator.md). All deployment modes of Milvus share the same API, so your client side code doesn't need to change much if moving to another deployment mode. Simply specify the [URI and Token](https://milvus.io/api-reference/pymilvus/v2.4.x/MilvusClient/Client/MilvusClient.md) of a Milvus server deployed anywhere:
295295

296296
```python
297297
client = MilvusClient(uri="http://localhost:19530", token="root:Milvus")
298298
```
299299

300-
Milvus provides REST and gRPC API, with client libraries in languages such as [Python](https://milvus.io/docs/install-pymilvus.md), [Java](https://milvus.io/docs/install-java.md), [Go](https://milvus.io/docs/install-go.md), C# and [Node.js](https://milvus.io/docs/install-node.md).
300+
Milvus provides REST and gRPC API, with client libraries in languages such as [Python](install-pymilvus.md), [Java](install-java.md), [Go](install-go.md), C# and [Node.js](install-node.md).

0 commit comments

Comments
 (0)