[HiCache] change the default policy to write through (#9772)

This commit is contained in:
Zhiqiang Xie
2025-08-28 18:28:39 -07:00
committed by GitHub
parent 5ad296bda1
commit 001f51940a
2 changed files with 2 additions and 2 deletions

View File

@@ -286,7 +286,7 @@ class ServerArgs:
enable_hierarchical_cache: bool = False
hicache_ratio: float = 2.0
hicache_size: int = 0
hicache_write_policy: str = "write_through_selective"
hicache_write_policy: str = "write_through"
hicache_io_backend: str = "kernel"
hicache_mem_layout: str = "layer_first"
hicache_storage_backend: Optional[str] = None