Riccardo Coccioli

Results 42 comments of Riccardo Coccioli

For what is worth we've done it in Cumin (that uses ClusterShell underneath for the transport) and opted to avoid the thousands separator bit as it felt a bit too...

It's not fully clear to me what's your use case. In particular if those settings are per-host or per-run and if they are persistent for some time or change at...

@degremont thanks for your quick reply! > I would like to avoid having a lot of option parameters to NodeSet constructor for each current (and future) parsing features. I agree,...

@degremont I've found a solution for my specific use case, I'm instantiating the `NodeSet` with `resolver=RESOLVER_NOGROUP`. I'm leaving this issue open in case you want to use it for tracking...

I think this might be the same or strictly related to #9981

Is there any news on this feature? I was looking for a way to extract a mapping of ASN -> list of prefixes, and because AFAIK it's not available in...

_[disclaimer] I'm the main developer of Cumin, sorry for the intrusion, I hope I'm not crossing a line here [/disclaimer]_ @btwe another possibility (that requires some work though) could be...

@ngarg-kr I played a bit with [multipaths](https://github.com/tidwall/gjson/blob/master/SYNTAX.md#multipaths), [literals](https://github.com/tidwall/gjson/blob/master/SYNTAX.md#literals) and [modifiers](https://github.com/tidwall/gjson/blob/master/SYNTAX.md#modifiers) and I think I got basically the same behaviour you were looking for. #### Query: ``` friends.#.others.#.[{"k":!null},{k}].@join.@values|#.@flatten ``` #### Result:...

> @tidwall @volans- The Same problem, eg: > > ``` > arr := gjson.GetBytes(jsonByte, `#(query%"*abc*")#.[resp.vid,resp.uid,resp.text,resp.errorno]`).Array() > ``` > > Sometimes the key vid\uid may not exist, the length(arr[i]) is not...

@litao09h Sorry but I don't understand. I was asking what is the JSON to which you apply the query `#(query%"*abc*")#.[resp.vid,resp.uid,resp.text,resp.errorno]`. The one above doesn't seem to match at all your...