mirror of
https://gitee.com/dromara/MilvusPlus.git
synced 2025-12-06 17:08:27 +08:00
更新 README.md
This commit is contained in:
parent
af023b65e2
commit
7419f1e46c
@ -2,9 +2,11 @@
|
||||
|
||||
## Project Introduction
|
||||
|
||||

|
||||
<div style="display: inline-block; border: 4px solid #ccc; border-radius: 10px; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); margin: 10px; padding: 10px;">
|
||||
<img src="./logo/milvus.png" alt="MilvusPlus" style="border-radius: 10px;" />
|
||||
</div>
|
||||
|
||||
> 🔥🔥🔥 [MilvusPlus](https://gitee.com/dromara/MilvusPlus) (short for MP) is an operational tool for [Milvus](https://milvus.io), designed to simplify interactions with the Milvus vector database, providing developers with an intuitive API similar to MyBatis-Plus annotations and method call style, born to improve efficiency.
|
||||
> 🔥🔥🔥 [MilvusPlus](https://milvusplus.cn/) (short for MP) is an operational tool for [Milvus](https://milvus.io), designed to simplify interactions with the Milvus vector database, providing developers with an intuitive API similar to MyBatis-Plus annotations and method call style, born to improve efficiency.
|
||||
|
||||
## Features
|
||||
|
||||
|
||||
@ -21,7 +21,7 @@
|
||||
<dependency>
|
||||
<groupId>org.dromara</groupId>
|
||||
<artifactId>milvus-plus-boot-starter</artifactId>
|
||||
<version>2.1.3</version>
|
||||
<version>2.1.4</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
<dependencyManagement>
|
||||
|
||||
@ -10,7 +10,6 @@ import java.util.List;
|
||||
|
||||
@Data
|
||||
@MilvusCollection(name = "face_collection",level = ConsistencyLevel.STRONG)
|
||||
@MilvusPartition(name = {"face_001", "face_002"})
|
||||
@GenerateMilvusMapper
|
||||
public class Face {
|
||||
@MilvusField(
|
||||
@ -33,6 +32,12 @@ public class Face {
|
||||
)
|
||||
private Person person;
|
||||
|
||||
@MilvusField(
|
||||
name = "temp",
|
||||
dataType = DataType.Int64
|
||||
)
|
||||
private Integer temp;
|
||||
|
||||
@MilvusField(
|
||||
name = "face_vector", // 字段名称
|
||||
dataType = DataType.FloatVector, // 数据类型为浮点型向量
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user