(ctx context.Context, docID string, cv *Version, collectionID uint32, toDelta RevisionDelta)
| 70 | } |
| 71 | |
| 72 | func (sc *ShardedLRURevisionCache) UpdateDeltaCV(ctx context.Context, docID string, cv *Version, collectionID uint32, toDelta RevisionDelta) { |
| 73 | sc.getShard(docID).UpdateDeltaCV(ctx, docID, cv, collectionID, toDelta) |
| 74 | } |
| 75 | |
| 76 | func (sc *ShardedLRURevisionCache) GetActive(ctx context.Context, docID string, collectionID uint32) (docRev DocumentRevision, err error) { |
| 77 | return sc.getShard(docID).GetActive(ctx, docID, collectionID) |
nothing calls this directly
no test coverage detected