2008-08-01から1ヶ月間の記事一覧

.clisprcの設定で日本語を扱う

『On Lisp』の6章のプロンプトを日本語にしてみたら、 (defnode 'people "あの人は男性ですか?" 'male 'female) (defnode 'male "彼は生きていますか?" 'liveman 'deadman) (defnode 'deadman "彼は米国人ですか?" 'us 'them) (defnode 'us "彼は硬貨になっ…

solr-rubyをMacOSXにインストール

solr-rubyとは rubyで書かれたsolrクライアントライブラリ。solrに対するHTTPリクエストとレスポンスを処理する。http://wiki.apache.org/solr/solr-ruby インストール手順1. apache-solr-1.2.0のインストール 以下のURLからapache-solr-1.2.0.zipをダウンロ…

DisMaxリクエスト

Solr::Request::Dismax Solr solr-ruby qf :query_fields mm :minimum_match pf :phrase_fields ps :phrase_slop qs N/A tie :tie_breaker bq :boost_query bf :boost_functions http://wiki.apache.org/solr/DisMaxRequestHandler

MoreLikeThisパラメータ

Solr mlt.fl mlt.mintf mlt.mindf mlt.minwl mlt.maxwl mlt.maxqt mlt.maxntp mlt.boost mlt.qf ? mlt.count http://wiki.apache.org/solr/MoreLikeThis

ハイライトパラメータ

hl hl.fl hl.snippets hl.fragsize hl.mergeContiguous N/A hl.requireFieldMatch hl.maxAnalyzedChars N/A hl.alternateField hl.maxAlternateFieldLength hl.formatter N/A hl.simple.pre hl.simple.post hl.fragmenter N/A hl.usePhraseHighlighter N/A h…

シンプルファセットパラメータ

Solr 説明 facet ファセット検索を実行する場合true facet.field ファセットの対象にするフィールドを指定 facet.query ? facet.prefix 先頭文字列がこれに一致するタームに対してファセットを実行 facet.sort trueを指定するとカウントでソートを実行 facet…

共通クエリパラメータ

Solr::Request::Standard Solr solr-ruby sort :sort start :start rows :rows fq :filter_queries fl :filter_list debugQuery :debug_query explainOther :explain_other http://wiki.apache.org/solr/CommonQueryParameters以下は要調査: :default_field…

コアクエリパラメータ

Solr::Request::Select Solr 説明 設定値 qt クエリータイプ standard wt ライタータイプ ruby http://wiki.apache.org/solr/CoreQueryParameters

Hpricotとは?

Solr::Importer::HpricotMapper HTML・XMLを「Rubyらしく」扱うライブラリ。 http://mono.kmc.gr.jp/~yhara/rubyscraping/?Hpricot

field要素のboost属性

Solr::Field#boostdocと同様。このフィールドの重み付けに使う。

doc要素のboost属性

Solr::Document#boosthttp://hudson.zones.apache.org/hudson/job/Lucene-trunk/javadoc//org/apache/lucene/document/Document.html#setBoost(float) Sets a boost factor for hits on any field of this document. This value will be multiplied into the…