Skip to content

Commit 956f915

Browse files
committed
tpl/collections: Add BenchmarkWhereMap
1 parent a2a4166 commit 956f915

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

‎tpl/collections/where_test.go

+16
Original file line numberDiff line numberDiff line change
@@ -902,3 +902,19 @@ func BenchmarkWhereOps(b *testing.B) {
902902
}
903903
})
904904
}
905+
906+
func BenchmarkWhereMap(b *testing.B) {
907+
ns := newNs()
908+
seq := map[string]string{}
909+
910+
for i := 0; i < 1000; i++ {
911+
seq[fmt.Sprintf("key%d", i)] = "value"
912+
}
913+
914+
for i := 0; i < b.N; i++ {
915+
_, err := ns.Where(context.Background(), seq, "key", "eq", "value")
916+
if err != nil {
917+
b.Fatal(err)
918+
}
919+
}
920+
}

0 commit comments

Comments
 (0)