Home / Function/ BenchmarkState_Set() — fiber Function Reference

BenchmarkState_Set() — fiber Function Reference

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

Entity Profile

Dependency Diagram

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

Relationship Graph

Source Code

state_test.go lines 783–794

func BenchmarkState_Set(b *testing.B) {
	b.ReportAllocs()

	st := newState()

	i := 0
	for b.Loop() {
		i++
		key := "key" + strconv.Itoa(i)
		st.Set(key, i)
	}
}

Domain

Subdomains

Defined In

Frequently Asked Questions

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

Analyze Your Own Codebase

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

Try Supermodel Free