Home / Function/ BenchmarkState_GetUint32() — fiber Function Reference

BenchmarkState_GetUint32() — fiber Function Reference

Architecture documentation for the BenchmarkState_GetUint32() function in state_test.go from the fiber codebase.

Entity Profile

Dependency Diagram

graph TD
  e05b5ce2_73f1_5ba9_053c_9bfe6d70002a["BenchmarkState_GetUint32()"]
  040d1690_51eb_9416_23b2_7b1543e92d65["state_test.go"]
  e05b5ce2_73f1_5ba9_053c_9bfe6d70002a -->|defined in| 040d1690_51eb_9416_23b2_7b1543e92d65
  style e05b5ce2_73f1_5ba9_053c_9bfe6d70002a fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

state_test.go lines 1154–1169

func BenchmarkState_GetUint32(b *testing.B) {
	b.ReportAllocs()
	st := newState()
	n := 1000
	// Prepopulate the state with uint32 values.
	for i := range n {
		key := "key" + strconv.Itoa(i)
		st.Set(key, uint32(i)) //nolint:gosec // G115 - test values are small
	}
	i := 0
	for b.Loop() {
		i++
		key := "key" + strconv.Itoa(i%n)
		st.GetUint32(key)
	}
}

Domain

Subdomains

Defined In

Frequently Asked Questions

What does BenchmarkState_GetUint32() do?
BenchmarkState_GetUint32() is a function in the fiber codebase, defined in state_test.go.
Where is BenchmarkState_GetUint32() defined?
BenchmarkState_GetUint32() is defined in state_test.go at line 1154.

Analyze Your Own Codebase

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

Try Supermodel Free