All Downloads are FREE. Search and download functionalities are using the official Maven repository.

common.turbotunnel.clientmap_test.go Maven / Gradle / Ivy

The newest version!
package turbotunnel

import (
	"testing"
	"time"
)

// Benchmark the ClientMap.SendQueue function. This is mainly measuring the cost
// of the mutex operations around the call to clientMapInner.SendQueue.
func BenchmarkSendQueue(b *testing.B) {
	m := NewClientMap(1 * time.Hour)
	id := NewClientID()
	m.SendQueue(id) // populate the entry for id
	b.ResetTimer()
	for i := 0; i < b.N; i++ {
		m.SendQueue(id)
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy