SolrNet 新手 - 如何处理多个Where子句

发布于 2024-11-15 13:12:37 字数 422 浏览 3 评论 0原文

我刚刚开始探索 SolrNet。以前我一直使用MSSQL FULL TEXT。

在 sql server 中,我的查询进行全文搜索,并且还具有多个联接和Where 子句。我还使用自定义分页仅返回数百万行中的 10 行。

我读过一些 solrNet 文档并运行博客上提供的示例应用程序。到目前为止一切进展顺利。只需要了解一下,我该如何处理 JOINS 和 WHERE 子句?

例如,如果用户搜索 Samsung,db 将返回 100k 条记录,但如果用户搜索 Samsung &&城市='纽约' &&价格>‘500’那么他只能得到几千张记录。

  • 我是否在 Solr 中添加所有列并在 Solr 中编写 WHERE 子句?
  • 对于 SQL JOINS 我该怎么办?

提前致谢!

I just started exploring SolrNet. Previously I have been using MSSQL FULL TEXT.

In sql server, my query make full text searches and also have multiple joins and Where clauses. I am also using custom paging to return only the 10 rows out of millions.

I have read few solrNet docs and run sample apps provided on the blogs. All worked well so far. Just need to get an idea, What do I do with JOINS and WHERE clauses??

e.g. If user searches for Samsung, db would return 100k records, but if users searches for Samsung && City='New york' && Price >'500' then he would only get couple of thousands records.

  • Do I add all columns in Solr and write WHERE clauses in Solr?
  • What do I do about SQL JOINS?

Thanks in Advance!

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

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

发布评论

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

评论(2

爱人如己 2024-11-22 13:12:37

Solr 中没有连接。来自 Solr wiki

Solr 提供一张表。存储一组
通常索引中的数据库表
需要对某些进行非规范化
表。尝试避免
非规范化通常会失败。

关于 WHERE 子句(即过滤),请参阅SolrNet 中的查询Solr 查询语法常用Solr查询参数

There are no joins in Solr. From the Solr wiki:

Solr provides one table. Storing a set
database tables in an index generally
requires denormalizing some of the
tables. Attempts to avoid
denormalizing usually fail.

About WHERE clauses (i.e. filtering), see Querying in SolrNet, Solr query syntax, and Common Solr query parameters.

黯然#的苍凉 2024-11-22 13:12:37

Solr 相当于 where 子句,即将列映射到字段并根据查询语法运行查询。像您的示例这样的查询:

 Samsung && City='New york' && Price >'500' 

可以在 Solr 中转换为类似的内容:

 q=Samsung AND city:"new york" AND price:[500 TO *]

将数据库映射到 Solr 模式时需要小心,特别是您可能必须对数据进行非规范化。有关详细信息,请参阅 Solr wiki 上的此页面。基本上,您无法在 Solr 中真正执行复杂的 JOIN。这是一个“平坦”的指数。

The Solr equivalent of your where clauses is to map your columns to fields and run queries based on the query syntax. A query like your example:

 Samsung && City='New york' && Price >'500' 

could be translated to something like this in Solr:

 q=Samsung AND city:"new york" AND price:[500 TO *]

You need to take some care when you map your database to a Solr schema, specifically you will probably have to denormalize your data. See this page on the Solr wiki for more information. Basically, you can't really do complex JOINs in Solr. It's a "flat" index.

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