使用面向对象表示法的 SolR 查询

发布于 2024-12-02 07:28:38 字数 331 浏览 1 评论 0原文

我有一个像这样的 SolR 查询:

&q=*:*&fq={!geofilt pt=45.15,-93.85 sfield=store d=5}

如何使用 SolrQuery()< 编写相同的查询/a> PHP SolR 扩展 API 的面向对象表示法?

I have a SolR query like this:

&q=*:*&fq={!geofilt pt=45.15,-93.85 sfield=store d=5}

How can I write the same using SolrQuery() object oriented notation from PHP SolR extension API?

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

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

发布评论

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

评论(2

纵情客 2024-12-09 07:28:38

您可以始终使用setParam()

$query = new SolrQuery();
$query->setParam('fq', '{!geofilt pt=45.15,-93.85 sfield=store d=5}');

You may always use setParam():

$query = new SolrQuery();
$query->setParam('fq', '{!geofilt pt=45.15,-93.85 sfield=store d=5}');
烧了回忆取暖 2024-12-09 07:28:38

..一个示例将很有用:您如何使用 SolrQuery(),您之前尝试过什么以及是否有任何错误消息?!

一般来说,您可以像处理任何其他过滤器查询一样处理 geofilt 函数。
只需将其添加到您的“选项”数组中

$solrOptions=array('fq'=>'{!geofilt pt=45.15,-93.85 sfield=store d=5}');

..an example would be useful: how you use SolrQuery(), what have you tried before and are there any error messages?!

In general, you can handle the geofilt function as any other filterquery.
Simply add that to your "options"-array

$solrOptions=array('fq'=>'{!geofilt pt=45.15,-93.85 sfield=store d=5}');
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文