npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

milvus-test-nodes

v1.1.12

Published

[![typescript](https://badges.aleen42.com/src/typescript.svg)](https://badges.aleen42.com/src/typescript.svg) [![downloads](https://img.shields.io/npm/dw/@zilliz/milvus2-sdk-node)](https://img.shields.io/npm/dw/@zilliz/milvus2-sdk-node) [![docker_pull](ht

Downloads

23

Readme

typescript downloads docker_pull codecov

Milvus2-sdk-node

This is node sdk for Milvus[https://github.com/milvus-io/milvus].

Dependencies

Milvus: v2+

Node: v12+

Installation

   npm install @zilliz/milvus2-sdk-node

API

| Name | Async | Description | | :---------------------- | :---- | :--------------------------------------: | | createCollection | false | Create collection in milvus | | hasCollection | false | Check collection exist or not | | showCollections | false | List all collections | | describeCollection | false | Get collection detail, like name ,schema | | getCollectionStatistics | false | Get collection statistics like row count | | loadCollection | true | Load data into cache | | releaseCollection | true | Release data from cache | | dropCollection | false | Drop collection from milvus | | createPartition | false | Create partition in one collection | | hasPartition | false | Check partition exist or not | | showPartitions | false | List all partitions for one collection | | getPartitionStatistics | false | Get partition statistics like row_count | | loadPartitions | true | Load data into cache | | releasePartitions | true | Release data from cache | | dropPartition | false | Drop partition from milvus | | createIndex | true | Creat index on vector field | | describeIndex | false | Get index info | | getIndexState | false | Get index build state | | getIndexBuildProgress | false | Get index building progress | | dropIndex | true | Drop index | | insert | false | Insert data into milvus | | search | false | Vector similarity search | | flush | false | Flush Data | | getDataByExpr | false | Get data by expr |

Example

  1. How to operate collection[https://github.com/milvus-io/milvus-sdk-node/blob/main/example/Collection.ts]
  2. How to insert data[https://github.com/milvus-io/milvus-sdk-node/blob/main/example/Insert.ts]
  3. Vector similarity search on float field[https://github.com/milvus-io/milvus-sdk-node/blob/main/example/Search.ts]
  4. Vector similarity search on binary field [https://github.com/milvus-io/milvus-sdk-node/blob/main/example/BinarySearch.ts]