cBioPortal / cbioportal-core

Externalized cBioPortal Core
2 stars 15 forks source link

Improve code by making caching behaviour less invasive #35

Open forus opened 6 months ago

forus commented 6 months ago

Current code relies on cache heavily. It explicitly calls DaoCancerStudy.reCacheAll(); and other such methods in multiple places to get up-to-date results. It suggests that the cache is not invalidated correctly when new data comes. Ideally, the cache should be optional(the program should work without it), and the cache management less manual and explicit.