https://github.com/zilliztech/milvus-common
https://github.com/zilliztech/milvus-common
Last synced: 10 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/zilliztech/milvus-common
- Owner: zilliztech
- Created: 2025-05-21T02:37:23.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2025-08-28T11:26:15.000Z (10 months ago)
- Last Synced: 2025-08-28T18:38:50.957Z (10 months ago)
- Language: C++
- Size: 160 KB
- Stars: 0
- Watchers: 2
- Forks: 5
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Milvus Common
## Overview
Milvus Common is a core component library that serves as a bridge between Milvus and Knowhere, designed to decouple these two major components and provide common functionality. This library contains essential utilities and interfaces that are shared between Milvus and Knowhere, making the codebase more modular and maintainable.
## Components
### Caching Layer
### Common Utilities
- `Monitor`: Metrics collection and monitoring
### Log Module
## Build from source
```
pip install conan==1.64.0
mkdir build && cd build
conan install .. --build=missing -o with_ut=True -s compiler.libcxx=libstdc++11 -s compiler.version=12 -s build_type=Release
conan build ..
# run ut
./test/test_cachinglayer/cachinglayer_test
```