(ctx context.Context, docID string, cv *Version, collectionID uint32)
| 98 | } |
| 99 | |
| 100 | func (sc *ShardedLRURevisionCache) RemoveCVOnly(ctx context.Context, docID string, cv *Version, collectionID uint32) { |
| 101 | sc.getShard(docID).RemoveCVOnly(ctx, docID, cv, collectionID) |
| 102 | } |
| 103 | |
| 104 | // An LRU cache of document revision bodies, together with their channel access. |
| 105 | type LRURevisionCache struct { |
nothing calls this directly
no test coverage detected