chore: remove reponse cache from root route

This commit is contained in:
Gabe Kangas
2023-12-11 20:19:39 -08:00
parent a3a4cbaf0f
commit e235c7aea2
2 changed files with 2 additions and 8 deletions

View File

@@ -42,7 +42,7 @@ func HandleHLSRequest(w http.ResponseWriter, r *http.Request) {
if hlsCacheAdapter == nil {
ca, err := memory.NewAdapter(
memory.AdapterWithAlgorithm(memory.LFU),
memory.AdapterWithAlgorithm(memory.LRU),
memory.AdapterWithCapacity(50),
memory.AdapterWithStorageCapacity(104_857_600),
)