mirror of
https://gitee.com/dromara/MilvusPlus.git
synced 2025-12-08 01:48:23 +08:00
更新 README.md
This commit is contained in:
parent
af023b65e2
commit
7419f1e46c
@ -2,9 +2,11 @@
|
|||||||
|
|
||||||
## Project Introduction
|
## 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
|
## Features
|
||||||
|
|
||||||
|
|||||||
@ -21,7 +21,7 @@
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.dromara</groupId>
|
<groupId>org.dromara</groupId>
|
||||||
<artifactId>milvus-plus-boot-starter</artifactId>
|
<artifactId>milvus-plus-boot-starter</artifactId>
|
||||||
<version>2.1.3</version>
|
<version>2.1.4</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
<dependencyManagement>
|
<dependencyManagement>
|
||||||
|
|||||||
@ -10,7 +10,6 @@ import java.util.List;
|
|||||||
|
|
||||||
@Data
|
@Data
|
||||||
@MilvusCollection(name = "face_collection",level = ConsistencyLevel.STRONG)
|
@MilvusCollection(name = "face_collection",level = ConsistencyLevel.STRONG)
|
||||||
@MilvusPartition(name = {"face_001", "face_002"})
|
|
||||||
@GenerateMilvusMapper
|
@GenerateMilvusMapper
|
||||||
public class Face {
|
public class Face {
|
||||||
@MilvusField(
|
@MilvusField(
|
||||||
@ -33,6 +32,12 @@ public class Face {
|
|||||||
)
|
)
|
||||||
private Person person;
|
private Person person;
|
||||||
|
|
||||||
|
@MilvusField(
|
||||||
|
name = "temp",
|
||||||
|
dataType = DataType.Int64
|
||||||
|
)
|
||||||
|
private Integer temp;
|
||||||
|
|
||||||
@MilvusField(
|
@MilvusField(
|
||||||
name = "face_vector", // 字段名称
|
name = "face_vector", // 字段名称
|
||||||
dataType = DataType.FloatVector, // 数据类型为浮点型向量
|
dataType = DataType.FloatVector, // 数据类型为浮点型向量
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user