分类网站上的搜索实施

发布于 2024-12-22 04:23:54 字数 279 浏览 0 评论 0原文

我目前正在开发一个用 PHP 开发的分类网站。我想在我们的网站中实现两种类型的搜索:

  1. 从我们自己的网站
  2. 搜索 搜索网络。

我即将实施 Solr 进行第一次搜索,但不确定如何实施“搜索网络”搜索。那么您能否给我提供一些建议,我已经了解了Nutch爬虫,但不知道这是否是正确的选择。 www.scrubtheweb.com 是实现两种搜索(搜索网页和站点搜索)的示例站点。我想实现与 www.scrubtheweb.com 完全相同的搜索。

所以请给我建议

I am presently working on a classified site which is developed in PHP. I want to implement two types of search in our site:

  1. Search from our own site
  2. Search the web.

I was about to implement Solr for the first search, but am not sure how to implement 'Search the web' search. So can you please provide me suggestions on that, I have come to know about Nutch crawler, but dont know if that is the right choice. www.scrubtheweb.com is the sample site with the implementation of both kinds(search the web and site search) of search. I want to implement search exactly same as that of www.scrubtheweb.com .

So please provide me suggestions on that

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

↘紸啶 2024-12-29 04:23:54

使用 Google 的自定义搜索

或者,只需将您的用户重定向到 Google:

<form method="get" action="http://www.google.com/search">
    <input type="text" name="q" />
    <input type="submit" value="Google Search" />
</form>

Use Google's Custom Search.

Or, simply redirect your users to Google:

<form method="get" action="http://www.google.com/search">
    <input type="text" name="q" />
    <input type="submit" value="Google Search" />
</form>
一场信仰旅途 2024-12-29 04:23:54

如果您愿意付费,您可以使用 Yahoo BOSS api 进行网络搜索,因为它是一个付费 API。这是自定义搜索的好方法

对于免费 API,您可以查看 programmableweb 。不确定是否有免费的网络搜索 API。

You can use Yahoo BOSS api for web search if you are willing to pay, since it is a paid api. It is a great way to customize your search

For free APIs you can have a look at programmableweb. Not sure whether there is a free web search API or not.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文