Oedipus是Sphix搜索引擎(>2.0.2)的Ruby客户端,支持实时索引和多维的faceted搜索。
示例代码:
require "oedipus"sphix = Oedipus.coect('127.0.0.1:9306') # sphixql hostsphix[:articles].isert( 7, title: "Badgers i the wild", body: "A big log wodge of text", author_id: 4, views: 102)sphix[:articles].search( "example", attrs: [:id, :views])
评论