integrate AIBrix KVcache (#10376)

This commit is contained in:
yi wang
2025-09-25 14:47:09 +08:00
committed by GitHub
parent 3d40794fcf
commit fce170480a
6 changed files with 307 additions and 2 deletions

View File

@@ -289,6 +289,14 @@ class HiCacheController:
)
self.storage_backend = MooncakeStore(self.storage_config)
elif storage_backend == "aibrix":
from sglang.srt.mem_cache.storage.aibrix_kvcache.aibrix_kvcache_storage import (
AibrixKVCacheStorage,
)
self.storage_backend = AibrixKVCacheStorage(
self.storage_config, self.mem_pool_host
)
elif storage_backend == "hf3fs":
from sglang.srt.mem_cache.storage.hf3fs.storage_hf3fs import (
HiCacheHF3FS,