Merged
Conversation
Signed-off-by: YaoJiayi <120040070@link.cuhk.edu.cn>
Shaoting-Feng
approved these changes
Jun 30, 2025
TeenSpirit1107
pushed a commit
to TeenSpirit1107/LMCache-yimeng
that referenced
this pull request
Jul 3, 2025
* add batched put interface Signed-off-by: YaoJiayi <120040070@link.cuhk.edu.cn> * minor fix Signed-off-by: YaoJiayi <120040070@link.cuhk.edu.cn> * minor fix Signed-off-by: YaoJiayi <120040070@link.cuhk.edu.cn> * fix typo Signed-off-by: YaoJiayi <120040070@link.cuhk.edu.cn> --------- Signed-off-by: YaoJiayi <120040070@link.cuhk.edu.cn>
Shaoting-Feng
pushed a commit
that referenced
this pull request
Jul 10, 2025
* add batched put interface Signed-off-by: YaoJiayi <120040070@link.cuhk.edu.cn> * minor fix Signed-off-by: YaoJiayi <120040070@link.cuhk.edu.cn> * minor fix Signed-off-by: YaoJiayi <120040070@link.cuhk.edu.cn> * fix typo Signed-off-by: YaoJiayi <120040070@link.cuhk.edu.cn> --------- Signed-off-by: YaoJiayi <120040070@link.cuhk.edu.cn>
Shaoting-Feng
pushed a commit
to Shaoting-Feng/LMCache
that referenced
this pull request
Jul 14, 2025
* add batched put interface Signed-off-by: YaoJiayi <120040070@link.cuhk.edu.cn> * minor fix Signed-off-by: YaoJiayi <120040070@link.cuhk.edu.cn> * minor fix Signed-off-by: YaoJiayi <120040070@link.cuhk.edu.cn> * fix typo Signed-off-by: YaoJiayi <120040070@link.cuhk.edu.cn> --------- Signed-off-by: YaoJiayi <120040070@link.cuhk.edu.cn>
Shaoting-Feng
pushed a commit
to Shaoting-Feng/LMCache
that referenced
this pull request
Jul 14, 2025
* add batched put interface Signed-off-by: YaoJiayi <120040070@link.cuhk.edu.cn> * minor fix Signed-off-by: YaoJiayi <120040070@link.cuhk.edu.cn> * minor fix Signed-off-by: YaoJiayi <120040070@link.cuhk.edu.cn> * fix typo Signed-off-by: YaoJiayi <120040070@link.cuhk.edu.cn> --------- Signed-off-by: YaoJiayi <120040070@link.cuhk.edu.cn> Signed-off-by: Shaoting Feng <shaotingf@uchicago.edu>
YurianStormrage
pushed a commit
to YurianStormrage/LMCache
that referenced
this pull request
Aug 26, 2025
* add batched put interface Signed-off-by: YaoJiayi <120040070@link.cuhk.edu.cn> * minor fix Signed-off-by: YaoJiayi <120040070@link.cuhk.edu.cn> * minor fix Signed-off-by: YaoJiayi <120040070@link.cuhk.edu.cn> * fix typo Signed-off-by: YaoJiayi <120040070@link.cuhk.edu.cn> --------- Signed-off-by: YaoJiayi <120040070@link.cuhk.edu.cn>
KevinCheung2259
pushed a commit
to KevinCheung2259/LMCache
that referenced
this pull request
Nov 5, 2025
* add batched put interface Signed-off-by: YaoJiayi <120040070@link.cuhk.edu.cn> * minor fix Signed-off-by: YaoJiayi <120040070@link.cuhk.edu.cn> * minor fix Signed-off-by: YaoJiayi <120040070@link.cuhk.edu.cn> * fix typo Signed-off-by: YaoJiayi <120040070@link.cuhk.edu.cn> --------- Signed-off-by: YaoJiayi <120040070@link.cuhk.edu.cn>
DongDongJu
pushed a commit
to DongDongJu/LMCache
that referenced
this pull request
Feb 22, 2026
* add batched put interface Signed-off-by: YaoJiayi <120040070@link.cuhk.edu.cn> * minor fix Signed-off-by: YaoJiayi <120040070@link.cuhk.edu.cn> * minor fix Signed-off-by: YaoJiayi <120040070@link.cuhk.edu.cn> * fix typo Signed-off-by: YaoJiayi <120040070@link.cuhk.edu.cn> --------- Signed-off-by: YaoJiayi <120040070@link.cuhk.edu.cn>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Add batched get interface. This interface makes the storage backends be able to perform batched get operation.
PR #912 and #863 can leverage this.
PR Checklist (Click to Expand)
Thank you for your contribution to LMCache! Before submitting the pull request, please ensure the PR meets the following criteria. This helps us maintain the code quality and improve the efficiency of the review process.
PR Title and Classification
Please try to classify PRs for easy understanding of the type of changes. The PR title is prefixed appropriately to indicate the type of change. Please use one of the following:
[Bugfix]for bug fixes.[CI/Build]for build or continuous integration improvements.[Doc]for documentation fixes and improvements.[Model]for adding a new model or improving an existing model. Model name should appear in the title.[Core]for changes in the core LMCache logic (e.g.,LMCacheEngine,Backendetc.)[Misc]for PRs that do not fit the above categories. Please use this sparingly.Note: If the PR spans more than one category, please include all relevant prefixes.
Code Quality
The PR need to meet the following code quality standards:
What to Expect for the Reviews
To create a new tag for lmcache (Note:
vprefix is required):git tag vx.x.xgit push origin vx.x.x(same version again)For example:
git tag v0.3.0git push origin v0.3.0In case the workflow fails, delete the tag and try again:
git tag -d vx.x.xgit push origin :refs/tags/vx.x.xFor example:
git tag -d v0.3.0git push origin :refs/tags/v0.3.0To create a new release and publish
lmcachePython package to PyPi:git remote add upstream git@github.com:LMCache/LMCache.gitgh release create vx.x.x --repo LMCache/LMCache --title "vx.x.x" --notes "<Add description>"For example:
git remote add upstream git@github.com:LMCache/LMCache.gitgh release create v0.3.0 --repo LMCache/LMCache --title "v0.3.0" --notes "LMCache v0.3.0 is a feature release. Users are encouraged to upgrade for the best experience."We aim to address all PRs in a timely manner. If no one reviews your PR within 5 days, please @-mention one of KuntaiDu, ApostaC or YaoJiayi.