mirror of
https://github.com/BerriAI/litellm.git
synced 2025-04-25 10:44:24 +00:00
dual cache use always read redis as True by default
This commit is contained in:
parent
db0ad40e98
commit
ca5a117544
1 changed files with 1 additions and 1 deletions
|
@ -1777,7 +1777,7 @@ class DualCache(BaseCache):
|
|||
redis_cache: Optional[RedisCache] = None,
|
||||
default_in_memory_ttl: Optional[float] = None,
|
||||
default_redis_ttl: Optional[float] = None,
|
||||
always_read_redis: Optional[bool] = False,
|
||||
always_read_redis: Optional[bool] = True,
|
||||
) -> None:
|
||||
super().__init__()
|
||||
# If in_memory_cache is not provided, use the default InMemoryCache
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue