CachingRelation
open class CachingRelation : IntermediateRelation
This Relation passes data through unchanged, but it caches that data up to a certain limit. Putting this on one side of a join can allow updates to be intelligently filtered.
-
The currently cached rows.
Declaration
Swift
public fileprivate(set) var cache: Set<Row>? -
Undocumented
Declaration
Swift
open override var contentProvider: RelationContentProvider { get }
CachingRelation Class Reference