PPiMapBuilder / ppi-query

Protein-protein interaction network (with orthology) querying library
GNU General Public License v3.0
2 stars 0 forks source link

Better ortholog cache #8

Open gcornut opened 7 years ago

gcornut commented 7 years ago

For now the cache is in memory and grows indefinitely TODO

Pseudo-code:

(if in-memory-cache?
   (get-from-memory-cache)
   (save-in-memory-cache
     (if in-disk-cache?
        (get-from-disk-cache)
        (save-in-disk-cache
          (get-from-inparanoid-ws)))))

Proposed caching strategy:

Persistence:

TODO cache loader: