if i need to store something that is a json object...
# community-help
r
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
If you are not planning to search on the JSON object you can just stringify and store it.
And just ensure that the field is not part of the schema and it won't be indexed.
r
awesome, thanks again @Kishore Nallan
👍 1