blob: 3ec4f14975e25f82797d1373fbd462a374ed3d0d (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/usr/bin/perl
use Data::Dumper;
use Sphinx::Search;
$sph = Sphinx::Search->new();
$results = $sph->SetMatchMode(SPH_MATCH_ALL)
->SetSortMode(SPH_SORT_RELEVANCE)
->Query("dolly");
print Dumper $results;
|