我创建了一个简单的Facebook应用程序,我想Facebook的流标签存储在我的MySQL数据库与流信息来源。 我必须用什么字段类型来存储Facebook的流标签?
流表: https://developers.facebook.com/docs/reference/fql/stream
- description_tags(内容匹配描述字段)
- message_tags(内容匹配消息字段)
- with_tags
- tagged_ids
- 附件
与description_tags样品描述:
"description": "Sanan Umer was tagged in Ar Arslan's photo.",
"description_tags": {
"0": [
{
"id": 100000381150973,
"name": "Sanan Umer",
"offset": 0,
"length": 10,
"type": "user"
}
],
"25": [
{
"id": 100000457967257,
"name": "Ar Arslan",
"offset": 25,
"length": 9,
"type": "user"
}
]
},
我想使用文本字段中键入,但想用加倍的专业检查。
拉动和retriving换页/用户/组/事件数据会更快,如果存储在一个表中的所有数据。 就像FB。 只是我在想什么。