php_sennaとは

php_sennaとは – Senna (非公式) PHPバインディング

php上からSennaを直接扱えるエクステンション、php_senna。

$index = new Senna_Index('/tmp/php_senna_sample');
$index->upd(‘key1′, NULL, ‘This is a sample.’);
$index->upd(‘key2′, NULL, ‘This is an another.’);
$index->update(‘key3′, 1, NULL, ‘php_senna sample’);
$index->update(‘key3′, 2, NULL, ‘binding’);
$index->update(‘key3′, 3, NULL, ‘sample code’);

$records = $index->query(‘sample’);
foreach ($records as $row) {
echo $row->getKey(), ‘ = ‘, $row->getScore(), “\n”;
}

Tritonなどを入れなくても、こんな感じでSennaを使えるらしいのです。
これは素晴らしいですね。

関連する記事:

Powered by

Leave a Comment


NOTE - You can use these HTML tags and attributes:
<a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong> <pre lang="" line="" escaped="" highlight="">