func()

in sg/internal/engine/query_cache.go [44:49]


func (qc *queryCache) set(key queryCacheKey, value []result.Result) {
	qc.mu.Lock()
	defer qc.mu.Unlock()

	qc.items[key.cacheKey()] = value
}