我正在进行API调用,而我得到的响应是一个相当大的JSON字符串。我希望尽量减少API调用,以避免达到速率限制和b)加快速度。
以下是我的JSON数据示例:
{
"firstName": "John",
"lastName": "Smith",
"isAlive": true,
"age": 25,
"address": {
"streetAddress": "21 2nd Street",
"city": "New York",
"state": "NY",
"postalCode": "10021-3100"
},
"phoneNumbers": [
{
"type": "home",
"number": "212 555-1234"
},
{
"type": "office",
"number": "646 555-4567"
}
],
"children": [],
"spouse": null
}
我的问题:
我对持久存储有哪些选择?
请注意:我使用的API处于测试阶段;所以我现在想避免使用MySQL,因为JSON表示可能会改变,导致我的表需要进行大修。