请帮助我了解以下哪项更适合扩展和性能。
Table: test
columns: id <int, primary key>, doc <int>, keyword <string>
我要存储的数据是指向包含特定关键字的文档的指针
设计一:
have unique constraint on the keyword column and store the list of documents as an array
e.g id: 1, doc: [4,5,6], keyword: google
设计二:
insert a row for each document
1 4 google
2 5 google
3 6 google
假设可以找到特定关键字的平均文档数接近 100000。可能没有关键字出现的最大文档数。