1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
|
<?xml version="1.0" encoding="utf-8"?>
<test>
<name>quorum vs ranker Reset</name>
<skip_indexer/>
<config>
indexer
{
mem_limit = 16M
}
searchd
{
<searchd_settings/>
workers = threads
}
index rt
{
type = rt
docinfo = extern
path = <data_path/>/rt
rt_attr_uint = idd
rt_field = body
rt_mem_limit = 8M
}
</config>
<sphqueries>
<sphinxql>insert into rt (id, idd, body) values ( 1, 11, 'this is cool place' )</sphinxql>
<sphinxql>insert into rt (id, idd, body) values ( 2, 11, 'cool place is like no other' )</sphinxql>
<sphinxql>insert into rt (id, idd, body) values ( 3, 11, 'place is cool becouse there is no things like this' )</sphinxql>
<sphinxql>select * from rt where match ('"is cool place"/3') order by id asc</sphinxql>
<sphinxql>select * from rt where match ('"there things is cool place"/3') order by id asc</sphinxql>
</sphqueries>
</test>
|