Home / Function/ Benchmark_Route_Match_Parallel() — fiber Function Reference

Benchmark_Route_Match_Parallel() — fiber Function Reference

Architecture documentation for the Benchmark_Route_Match_Parallel() function in router_test.go from the fiber codebase.

Entity Profile

Dependency Diagram

graph TD
  4ab8daa5_2cba_d0c4_abe2_a6bcb7d3b8ba["Benchmark_Route_Match_Parallel()"]
  326d7e00_9e4f_d854_0c78_b9c0c93e5537["router_test.go"]
  4ab8daa5_2cba_d0c4_abe2_a6bcb7d3b8ba -->|defined in| 326d7e00_9e4f_d854_0c78_b9c0c93e5537
  style 4ab8daa5_2cba_d0c4_abe2_a6bcb7d3b8ba fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

router_test.go lines 2229–2248

func Benchmark_Route_Match_Parallel(b *testing.B) {
	parsed := parseRoute("/user/keys/:id")
	route := &Route{use: false, root: false, star: false, routeParser: parsed, Params: parsed.params, path: "/user/keys/:id", Path: "/user/keys/:id", Method: "DELETE"}
	route.Handlers = append(route.Handlers, func(_ Ctx) error {
		return nil
	})
	b.RunParallel(func(pb *testing.PB) {
		// Each worker gets its own local variables to avoid data races
		var params [maxParams]string
		for pb.Next() {
			_ = route.match("/user/keys/1337", "/user/keys/1337", &params)
		}
	})

	// Single-threaded verification to preserve correctness checks
	var verifyParams [maxParams]string
	match := route.match("/user/keys/1337", "/user/keys/1337", &verifyParams)
	require.True(b, match)
	require.Equal(b, []string{"1337"}, verifyParams[0:len(parsed.params)])
}

Domain

Subdomains

Defined In

Frequently Asked Questions

What does Benchmark_Route_Match_Parallel() do?
Benchmark_Route_Match_Parallel() is a function in the fiber codebase, defined in router_test.go.
Where is Benchmark_Route_Match_Parallel() defined?
Benchmark_Route_Match_Parallel() is defined in router_test.go at line 2229.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free