Displaying 3 results from an estimated 3 matches for "get_hit".
Did you mean:
get_bit
2007 Apr 03
3
More weirdness with PHP bindings
...ching_terms, but it doesn't reproduce the bug above.
In fact, I don't use a "join(get_matching_terms())" as smoketest do, but
iterate with get_matching_terms_begin and get_matching_terms_end.
Just by curiosity, I added the following lines in smoketest.php :
$hit=$mset->get_hit(0);
$it=$enq->get_matching_terms_begin($hit);
while (! $it->equals($enq->get_matching_terms_end($hit)))
{
echo $it->get_term(), ' ';
$it->next();
}
and with that code, we get the correct terms. So the bug only concerns...
2007 Feb 09
1
PHP Binding and dbi2omega questions
...ot;));
// lets grab the matches!
$mset = $enq->get_mset(0, 10);
// output how many estimated
echo 'Matches: '.$mset->get_matches_estimated().'<br/>';
// Output the terms that matched
$terms = join(' ', $enq->get_matching_terms($mset->get_hit(0)));
echo 'TERMS: '.$terms.'<br/>';
// Loop the matches and output some data..
for ($i = $mset->begin(); !$i->equals($mset->end()); $i->next()) {
echo '<hr/> Document ID '.$i->get_docid().'<br/>';
echo $...
2010 May 29
0
User Error during memcached integration
...TAT version 1.2.8
STAT pointer_size 64
STAT rusage_user 7.085922
STAT rusage_system 13.275981
STAT curr_items 10878
STAT total_items 11441
STAT bytes 2020180
STAT curr_connections 5
STAT total_connections 306
STAT connection_structures 11
STAT cmd_flush 0
STAT cmd_get 457326
STAT cmd_set 11441
STAT get_hits 412184
STAT get_misses 45142
STAT evictions 0
STAT bytes_read 22600329
STAT bytes_written 53036649
STAT limit_maxbytes 30064771072
STAT threads 5
STAT accepting_conns 1
STAT listen_disabled_num 0
Below are the configuration details and stacktrace:
config/environment.rb (the important parts)
=====...