Akhileshwar Gurram

Results 14 comments of Akhileshwar Gurram

@JyotinderSingh Thank you for your detailed feedback. I agree that storing JSON as `[]byte` instead of `interface{}` is a good approach. It will reduce memory usage and provide better compatibility...

@JyotinderSingh would like to know your thoughts on it please, to finalize which way we are going. I've been working on implementation of the jsonpath operations using fastjson and had...

@JyotinderSingh I have gone with interface{} for storing the json in our application as redis' JSON.SET supports primitive datatypes as well: ``` JSON.SET message $ '"Hello, World!"' JSON.SET booleanTrue $...

> Also, I'm not sure why a python script is needed to test the operations, we already have the required go infrastructure for E2E testing in our repo. > @JyotinderSingh...