Irmin_pack.Indexing_strategytype t = value_length:int -> Pack_value.Kind.t -> boolThe type of configurations for irmin-pack's indexing strategy, which dictates whether or not newly-appended pack entries should also be added to the index. Strategies are parameterised over:
Indexing more than the minimal strategy only impacts performance and not correctness: more indexing results in a larger index and a smaller pack file.
val always : tThe strategy that indexes all objects.
val minimal : tThe strategy that indexes as few objects as possible while still maintaing store integrity.
val minimal_with_contents : tThe strategy that is similar to the minimal strategy but it also indexes contents objects.
val default : tdefault is the indexing strategy used by irmin-pack instances that do not explicitly set an indexing strategy in Irmin_pack.config. Currently set to always.