You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+8Lines changed: 8 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -243,6 +243,14 @@ The above presents two samples from our trace dataset. The trace includes the ti
243
243
Please kindly cite our paper if you find the paper or the traces are useful:
244
244
245
245
```bibtex
246
+
@article{qin2024mooncake,
247
+
title={Mooncake: A kvcache-centric disaggregated architecture for llm serving},
248
+
author={Qin, Ruoyu and Li, Zheming and He, Weiran and Cui, Jialei and Tang, Heyi and Ren, Feng and Ma, Teng and Cai, Shangming and Zhang, Yineng and Zhang, Mingxing and others},
249
+
journal={ACM Transactions on Storage},
250
+
year={2024},
251
+
publisher={ACM New York, NY}
252
+
}
253
+
246
254
@article{qin2024mooncake,
247
255
title = {Mooncake: A KVCache-centric Disaggregated Architecture for LLM Serving},
Copy file name to clipboardExpand all lines: doc/en/mooncake-store.md
+10Lines changed: 10 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -732,3 +732,13 @@ We provide a reference example `distributed_object_store_provider.py`, located i
732
732
733
733
#### C++ Usage Example
734
734
The C++ API of Mooncake Store provides more low-level control capabilities. We provide a reference example `client_integration_test`, located in the `mooncake-store/tests` directory. To check if the related components are properly installed, you can run etcd and Master Service (`mooncake_master`) on the same server, and then execute this C++ program (located in the `build/mooncake-store/tests` directory). It should output a successful test result.
735
+
736
+
## Version Management Policy
737
+
738
+
The current version of Mooncake Store is defined in [`CMakeLists.txt`](../../mooncake-store/CMakeLists.txt) as `project(MooncakeStore VERSION 2.0.0)`.
739
+
740
+
When to bump the version:
741
+
742
+
***Major version (X.0.0)**: For breaking API changes, major architectural changes, or significant new features that affect backward compatibility
743
+
***Minor version (0.X.0)**: For new features, API additions, or notable improvements that maintain backward compatibility
744
+
***Patch version (0.0.X)**: For bug fixes, performance optimizations, or minor improvements that don't affect the API
Mooncake Store 的 C++ API 提供了更底层的控制能力。我们提供一个参考样例 `client_integration_test`,其位于 `mooncake-store/tests` 目录下。为了检测相关组件是否正常安装,可在相同的服务器上运行 etcd、Master Service(`mooncake_master`),并执行该 C++ 程序(位于 `build/mooncake-store/tests` 目录下),应输出测试成功的结果。
741
+
742
+
## 版本管理策略
743
+
744
+
Mooncake Store 的当前版本定义在 [`CMakeLists.txt`](../../mooncake-store/CMakeLists.txt) 中,为 `project(MooncakeStore VERSION 2.0.0)`。
745
+
746
+
何时需要升级版本:
747
+
748
+
***主版本号 (X.0.0)**:当存在破坏性的 API 变更、主要架构更改,或影响向后兼容性的重要新功能时
Copy file name to clipboardExpand all lines: docs/source/design/mooncake-store.md
+10Lines changed: 10 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -696,3 +696,13 @@ We provide a reference example `distributed_object_store_provider.py`, located i
696
696
697
697
#### C++ Usage Example
698
698
The C++ API of Mooncake Store provides more low-level control capabilities. We provide a reference example `client_integration_test`, located in the `mooncake-store/tests` directory. To check if the related components are properly installed, you can run etcd and Master Service (`mooncake_master`) on the same server, and then execute this C++ program (located in the `build/mooncake-store/tests` directory). It should output a successful test result.
699
+
700
+
## Version Management Policy
701
+
702
+
The current version of Mooncake Store is defined in [`CMakeLists.txt`](../../mooncake-store/CMakeLists.txt) as `project(MooncakeStore VERSION 2.0.0)`.
703
+
704
+
When to bump the version:
705
+
706
+
***Major version (X.0.0)**: For breaking API changes, major architectural changes, or significant new features that affect backward compatibility
707
+
***Minor version (0.X.0)**: For new features, API additions, or notable improvements that maintain backward compatibility
708
+
***Patch version (0.0.X)**: For bug fixes, performance optimizations, or minor improvements that don't affect the API
0 commit comments