|
@@ -1 +1,42 @@
|
|
|
-# milvus-sdk-java
|
|
|
+# milvus-sdk-java
|
|
|
+
|
|
|
+[](https://search.maven.org/artifact/io.milvus/milvus-sdk-java/)
|
|
|
+
|
|
|
+Java SDK for Milvus distributed high-performance vector search engine.
|
|
|
+If you want to contribute to this repo, please read our [contribution guidelines]().
|
|
|
+
|
|
|
+## Getting started
|
|
|
+
|
|
|
+### Dependency
|
|
|
+
|
|
|
+Apache Maven
|
|
|
+```xml
|
|
|
+<dependency>
|
|
|
+ <groupId>io.milvus</groupId>
|
|
|
+ <artifactId>milvus-sdk-java</artifactId>
|
|
|
+ <version>0.1.1</version>
|
|
|
+</dependency>
|
|
|
+```
|
|
|
+
|
|
|
+Gradle/Grails
|
|
|
+
|
|
|
+`compile 'io.milvus:milvus-sdk-java:0.1.0'`
|
|
|
+
|
|
|
+###Examples
|
|
|
+
|
|
|
+Please refer to [examples](https://github.com/milvus-io/milvus-sdk-java/tree/master/examples) folder
|
|
|
+
|
|
|
+###Documentation
|
|
|
+
|
|
|
+- [Javadoc](https://milvus-io.github.io/milvus-sdk-java/javadoc/index.html)
|
|
|
+- [Milvus doc](https://milvus.io/docs/en/userguide/install_milvus/)
|
|
|
+
|
|
|
+###Additional information
|
|
|
+
|
|
|
+- The Java source code is formatted using [google-java-format](https://github.com/google/google-java-format).
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|