Peek is for per collection access to Peek method
(ctx context.Context, docID, revID string)
| 161 | |
| 162 | // Peek is for per collection access to Peek method |
| 163 | func (c *collectionRevisionCache) Peek(ctx context.Context, docID, revID string) (DocumentRevision, bool) { |
| 164 | return (*c.revCache).Peek(ctx, docID, revID, c.collectionID) |
| 165 | } |
| 166 | |
| 167 | // Put is for per collection access to Put method |
| 168 | func (c *collectionRevisionCache) Put(ctx context.Context, docRev DocumentRevision) { |