mirror of
https://github.com/ltcptgeneral/cs239-caching.git
synced 2025-08-14 05:10:20 +00:00
Abstracted data loading so that data can be loaded simply through the config file. Moved Mike's LLM data generation code and my own dummy data generating code to the database folder.
This commit is contained in:
@ -13,3 +13,4 @@ config = load_config()
|
||||
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)
|
||||
DB_FILE = config.get("db_file", "llmData_sns.json")
|
||||
|
Reference in New Issue
Block a user