In Files

Parent

Class/Module Index [+]

Quicksearch

Ferret::Search::Explanation

Summary

Explanation is used to give a description of why a document matched with the score that it did. Use the Explanation#to_s or Explanation#to_html methods to display the explanation in a human readable format. Creating explanations is an expensive operation so it should only be used for debugging purposes. To create an explanation use the Searcher#explain method.

Example

puts searcher.explain(query, doc_id).to_s

Public Instance Methods

score → float click to toggle source

Returns the score represented by the query. This can be used for debugging purposes mainly to check that the score returned by the explanation matches that of the score for the document in the original query.

static VALUE
frb_expl_score(VALUE self)
{
    GET_EXPL();
    return rb_float_new((double)expl->value);
}
to_html → string click to toggle source

Returns an html representation of the explanation in readable format.

static VALUE
frb_expl_to_html(VALUE self)
{
    GET_EXPL();
    char *str = expl_to_html(expl);
    VALUE rstr = rb_str_new2(str);
    free(str);
    return rstr;
}
to_s → string click to toggle source

Returns a string representation of the explanation in readable format.

static VALUE
frb_expl_to_s(VALUE self)
{
    GET_EXPL();
    char *str = expl_to_s(expl);
    VALUE rstr = rb_str_new2(str);
    free(str);
    return rstr;
}

[Validate]

Generated with the Darkfish Rdoc Generator 2.