Get is for per collection access to Get method
(ctx context.Context, docID string, cv *Version, includeDelta bool, loadBackup bool)
| 151 | |
| 152 | // Get is for per collection access to Get method |
| 153 | func (c *collectionRevisionCache) GetWithCV(ctx context.Context, docID string, cv *Version, includeDelta bool, loadBackup bool) (DocumentRevision, error) { |
| 154 | return (*c.revCache).GetWithCV(ctx, docID, cv, c.collectionID, includeDelta, loadBackup) |
| 155 | } |
| 156 | |
| 157 | // GetActive is for per collection access to GetActive method |
| 158 | func (c *collectionRevisionCache) GetActive(ctx context.Context, docID string) (DocumentRevision, error) { |