Rails 3 Sunspot solr 搜索范围内
我有一个关于新的 Sunspot/solr 功能的问题要问: 附近的限制 我(通过谷歌地理编码API)有视口和边界,它们是边界框西南角和东北角的纬度/经度坐标。我希望 Sunspot/Solr 在这个边界框内进行搜索,但我还没有弄清楚。所以我的问题是:是否可以使 Solr(或通过任何 solr 插件)能够在边界框内进行搜索?如果是,怎么做?
谢谢
I have a question to ask regarding the new Sunspot/solr feature: restriction with near
I have (via the google geocoding API) the viewport and the bounds which are latitude/longitude coordinates of the southwest and northeast corners of a bounding box. I want Sunspot/Solr to search within this bounding box but I haven't figured it out yet. So my question is: Is it possible to make Solr (or via any of the solr plugins) capable for searches within a bounding box? If yes, how?
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您只需创建一个 trie double 类型的
lat
和lng
字段,然后执行两个范围查询(一个用于 lat 范围,一个用于 lng 范围)。You can just create a
lat
andlng
field of type trie double, and then do two range queries (one for a lat range, one for a lng range).Sunspot 支持使用 Geohash 进行空间搜索,请参阅 RestrictionWithNear。但您只能使用预定义的距离(尽管
: precision
)。从 3.1 开始,Sparcial 被 添加 在 solr 中,我在 sunspot 中找不到相应的 DSL,但你总是可以使用
adjust_solr_params
添加自定义参数:您必须使用 Solr 3.1(sunspot 中捆绑的 solr 是 1.4),并且索引字段位置如
还需要将字段类型添加到 schema.xml 中。 (举个例子,我自己没试过)
Sunspot supports spartial search using Geohash, see RestrictionWithNear. But you can only use the predifined distance (though
:precision
).Sparcial is added in solr starting from 3.1, I cannot find correspondng DSL in sunspot, but you can always use
adjust_solr_params
to add customized parameters:You have to use Solr 3.1 (the bundled solr in sunspot is 1.4), and index field location like
Also the field type needs to be added into schema.xml. (An example, I have not tried it myself)