abstract class Cache extends AnyRef
A cache to use for individual runs. Not threadsafe
Linear Supertypes
Known Subclasses
Ordering
- Alphabetic
- By Inheritance
Inherited
- Cache
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Abstract Value Members
- abstract def cached(files: Seq[IRContainer])(implicit ec: ExecutionContext): Future[Seq[IRFile]]
Extract and cache IR.
- abstract def free(): Unit
Should be called if this cache is not used anymore.
Should be called if this cache is not used anymore.
Frees resources in the global cache, if they are not used anymore. The cache may be reused after calling free (but this is not any faster than calling IRFileCache.newCache, modulo the object allocation).