(ctx context.Context, docID string, cv *Version, collectionID uint32)
| 90 | } |
| 91 | |
| 92 | func (sc *ShardedLRURevisionCache) RemoveWithCV(ctx context.Context, docID string, cv *Version, collectionID uint32) { |
| 93 | sc.getShard(docID).RemoveWithCV(ctx, docID, cv, collectionID) |
| 94 | } |
| 95 | |
| 96 | func (sc *ShardedLRURevisionCache) RemoveRevOnly(ctx context.Context, docID, revID string, collectionID uint32) { |
| 97 | sc.getShard(docID).RemoveRevOnly(ctx, docID, revID, collectionID) |
nothing calls this directly
no test coverage detected