mirror of
https://github.com/ltcptgeneral/cs239-caching.git
synced 2025-04-04 05:23:26 +00:00
16 lines
408 B
Python
16 lines
408 B
Python
import os
|
|
import yaml
|
|
|
|
CONFIG_FILE = "config.yaml"
|
|
|
|
def load_config():
|
|
with open(CONFIG_FILE, "r") as f:
|
|
return yaml.safe_load(f)
|
|
|
|
config = load_config()
|
|
|
|
# Read from environment variable or fallback to YAML value
|
|
CACHE_STRATEGY = os.getenv("CACHE_STRATEGY", config.get("cache_strategy", "Baseline"))
|
|
CACHE_LIMIT = config.get("cache_limit", 10)
|
|
L2_CACHE_LIMIT = config.get("l2_cache_limit", 100)
|