1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
|
// Copyright 2020 New Relic Corporation. All rights reserved.
// SPDX-License-Identifier: Apache-2.0
package internal
import "sync"
// rulesCache is designed to avoid applying url-rules, txn-name-rules, and
// segment-rules since regexes are expensive!
type rulesCache struct {
sync.RWMutex
cache map[rulesCacheKey]string
maxCacheSize int
}
type rulesCacheKey struct {
isWeb bool
inputName string
}
func newRulesCache(maxCacheSize int) *rulesCache {
return &rulesCache{
cache: make(map[rulesCacheKey]string, maxCacheSize),
maxCacheSize: maxCacheSize,
}
}
func (cache *rulesCache) find(inputName string, isWeb bool) string {
if nil == cache {
return ""
}
cache.RLock()
defer cache.RUnlock()
return cache.cache[rulesCacheKey{
inputName: inputName,
isWeb: isWeb,
}]
}
func (cache *rulesCache) set(inputName string, isWeb bool, finalName string) {
if nil == cache {
return
}
cache.Lock()
defer cache.Unlock()
if len(cache.cache) >= cache.maxCacheSize {
return
}
cache.cache[rulesCacheKey{
inputName: inputName,
isWeb: isWeb,
}] = finalName
}
|