()
| 117 | } |
| 118 | |
| 119 | func DefaultRevisionCacheOptions() *RevisionCacheOptions { |
| 120 | return &RevisionCacheOptions{ |
| 121 | MaxItemCount: DefaultRevisionCacheSize, |
| 122 | ShardCount: DefaultRevisionCacheShardCount, |
| 123 | } |
| 124 | } |
| 125 | |
| 126 | // RevisionCacheBackingStore is the interface required to be passed into a RevisionCache constructor to provide a backing store for loading documents. |
| 127 | type RevisionCacheBackingStore interface { |
no outgoing calls
no test coverage detected