ksql/internal/structs
Matheus de Oliveira db86670b6c Use sync.Map on global caches to avoid race-condition
As known, a map can't be accessed with read/write concurrently on
multiple goroutines. This just replaces all uses of global maps for
caches with sync.Map, which is safe to be used concurrently.
2022-07-04 17:28:27 -03:00
..
func_parser.go Fix linter issue 2022-01-10 21:49:05 -03:00
func_parser_test.go Finish writing tests for ParseInputFunc() 2022-01-10 21:55:40 -03:00
structs.go Use sync.Map on global caches to avoid race-condition 2022-07-04 17:28:27 -03:00