if i need to store something that is a json object. what's the best approach stringify it and store it as one piece. or break it up into multiple fields (int32 and string)? I will always be returning it all together.
k
Kishore Nallan
05/08/2021, 4:04 PM
If you are not planning to search on the JSON object you can just stringify and store it.
Kishore Nallan
05/08/2021, 4:04 PM
And just ensure that the field is not part of the schema and it won't be indexed.