Skip to content

Commit 9958aad

Browse files
committed
scalar: use index.skipHash=true for performance
The index.skipHash config option has been set to 'false' by Scalar since 4933152 (scalar: enable path-walk during push via config, 2025-05-16) but that commit message is trying to communicate the exact opposite: that the 'true' value is what we want instead. This means that we've been disabling this performance benefit for Scalar repos unintentionally. Fix this issue before we add justification for the config options set in this list. Signed-off-by: Derrick Stolee <[email protected]>
1 parent a4ad8f8 commit 9958aad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scalar.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ static int set_recommended_config(int reconfigure)
154154
{ "credential.validate", "false", 1 }, /* GCM4W-only */
155155
{ "gc.auto", "0", 1 },
156156
{ "gui.GCWarning", "false", 1 },
157-
{ "index.skipHash", "false", 1 },
157+
{ "index.skipHash", "true", 1 },
158158
{ "index.threads", "true", 1 },
159159
{ "index.version", "4", 1 },
160160
{ "merge.stat", "false", 1 },

0 commit comments

Comments
 (0)