| 注册
请输入搜索内容

热门搜索

Java Linux MySQL PHP JavaScript Hibernate jQuery Nginx
jopen
10年前发布

Sphinx 的 Ruby 开发包:Oedipus

Oedipus 是 Sphinx 搜索引擎(>2.0.2) 的 Ruby 客户端,支持实时索引和多维的 faceted 搜索。

示例代码:

sphinx[:articles].search(    "example",    attrs: [:*, "WEIGHT() AS wgt"]  )

require "oedipus"    sphinx = Oedipus.connect('127.0.0.1:9306') # sphinxql host    sphinx[:articles].insert(    7,    title:     "Badgers in the wild",    body:      "A big long wodge of text",    author_id: 4,    views:     102  )    sphinx[:articles].search(    "example",    attrs: [:id, :views]  )

项目主页:http://www.open-open.com/lib/view/home/1399509593806

 本文由用户 jopen 自行上传分享,仅供网友学习交流。所有权归原作者,若您的权利被侵害,请联系管理员。
 转载本站原创文章,请注明出处,并保留原始链接、图片水印。
 本站是一个以用户分享为主的开源技术平台,欢迎各类分享!
 本文地址:https://www.open-open.com/lib/view/open1399509593806.html
Oedipus Sphinx 搜索引擎