Shashank Mehra
Results
2
issues of
Shashank Mehra
If json is Unmarshaled using json.Number format like: ``` my_map := make(map[string]interface{}) d := json.NewDecoder(strings.NewReader(json_raw)) d.UseNumber() d.Decode(&my_map) ``` And then used to search: ``` var expr1 = jmespath.MustCompile("people[?age > `20`].[name,...
I was wondering if this library supports concurrency, and saw that a recent commit seems to imply that the support has been added: https://github.com/derekparker/trie/commit/1ce4922c7ad906a094c6298977755068ba76ad31 However, wouldn't your trie still be...