freebase 中的基本查询
我正在修改 Freebase,并尝试使用查询编辑器,一切看起来都很棒。我仍在阅读精美的手册,但似乎无法理解是否可以将其用作网络搜索替代品来向用户显示精炼的数据。主要问题是:
如果 {q1, q2, q3 ....} 是用户提交的查询 - 如何处理我以编程方式将每个查询项映射到 freebase 查询键:值对?
I am tinkering with Freebase, and trying things with the query editor and everything looks great. I'm still reading the fine manual, but can't seem to get the point if this may be used as a web search replacement for showing refined data to the user. The main question is:
If {q1, q2, q3 ....} be the query the user submits - how do I programatically map each query term to the freebase query key:value pair?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不确定它是否可以完全取代目前的搜索引擎。我刚刚写了一篇博客文章,用于用 C# for freebase 处理基本查询(更多内容将在后面介绍)。
http://2guysfrommumbai.wordpress.com/
如果你喜欢 java 的东西,你可以去,
https://github.com/narphorium/freebase-java-api
这是一个更完整的api,我已经使用它并取得了很好的成功。
您可以使用 q1、q2、q3 作为参数附加多个查询,更多详细信息可在 freebase 开发人员网站上找到。
希望这有帮助。
I am not sure if it can entirely replace the current search engines as of now.I have just written a blog post for handling a basic query(more will follow) in C# for freebase.
http://2guysfrommumbai.wordpress.com/
If you like the java stuff you can go to,
https://github.com/narphorium/freebase-java-api
this is a more complete api,and i have used it with good success.
You can append multiple queries using q1,q2,q3 as parameters,more details are available on the freebase developer site.
Hope this helps.