MYSQL 中的 Friendfeed 无模式数据
我读了一篇关于无模式数据库的文章,听起来很酷。 (http://bret.appspot.com/entry/how-friendfeed-uses -mysql)
但我不清楚的是他们如何对这些数据运行搜索查询?既然数据是JSON格式的,我们如何查找它呢?
I read an article around schema-less database which sounds cool. (http://bret.appspot.com/entry/how-friendfeed-uses-mysql)
But what isn't clear to me is how do they run search queries on this data? Since the data is in JSON format how do we look for it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
对于过滤/搜索所需的属性,首先使用单独的表对其进行索引。这使得数据更加透明。
让我引用这篇文章的内容: http://bret.appspot.com/entry /how-friendfeed-uses-mysql
For attributes that are needed for filtering / searching, they are first indexed using a separate table. This makes the data more transparent.
Let me quote what this post says: http://bret.appspot.com/entry/how-friendfeed-uses-mysql
我想象他们有一个单独的搜索引擎,有自己的索引 - 可能甚至在 MySQL 中也没有,比如 Solr< /a>.
I'd imagine they have a separate search engine with its own index - probably not even in MySQL, something like Solr.
他们使用 sphinx 来实现此目的
They're using sphinx for that