My sphinx.conf
source post_source_1
{
### Why '_1','_2','_3' stuff ? Because sphinx has limit [4GB] per index file \
### so you must split index sources...
type = mysql
sql_host = localhost
sql_user = xxx
sql_pass = xxx
sql_db = xxx
sql_port = 3306
sql_query_pre = SET NAMES utf8
### Query before fething for indexing...
sql_query = SELECT *, id AS pid, CRC32(slug) as slug_crc32 FROM hb_posts
### Custom fields can be set (slug_crc32)
sql_attr_uint = pid
# my post ID
# Why sphinx ?
sql_field_string = title
sql_field_string = slug
sql_field_string = content
sql_field_string = tags
# I can store string fields into RAM, what i want
sql_attr_uint = category
# my post category ID
sql_attr_timestamp = date
# my post int date
sql_attr_uint = views
# my post int date
sql_query_info_pre = SET NAMES utf8
### 'sql_query_info_pre' You must use .patch(s) (requires source [re]build) \
### OR source edit(C++) for UTF support for string fields 'sql_field_string'
sql_query_info = SELECT * FROM my_posts WHERE id=$id
# lets index...
}
index post_1
{
source = post_source_1
# My valid and declared source name
path = /var/data/post
# Where to locate index file(s) (Are you have SSD? :)
charset_type = utf-8
# Charset must be same for all...
}
Test script:
<?php
$slug = $_GET["my_post_slug"]; # Or explode REQUEST URI etc...
// $slug = preg_replace("/[a-z0-9\-_]/i","",$slug); # There is no SPX INJECTION yet :D
$conf = getMyConf();
### new sphinx instance
require "sphinxapi.php";
$cl = New SphinxClient ();
$cl->SetServer($conf["server"], $conf["port"]);
$cl->SetConnectTimeout($conf["timeout"]);
$cl->setMaxQueryTime($conf["max"]);
### new researching setup
$cl->SetMatchMode(SPH_MATCH_FULLSCAN);
# I am not using sphinx as a only 'searching daemon', because i can use it as a 'database platform' directly...
$cl->SetArrayResult(TRUE);
$cl->setLimits(0,1,1);
# I am looking for only post, not searching a keyword...
$cl->SetFilter("slug_crc32", array(crc32($slug)));
# int > faster and safer than strings...
$post = $cl->Query(null, "post_1");
# Quering NULL: Give me result(s) by filtering all posts(SPH_MATCH_FULLSCAN) by my filters(slug_crc32,limits etc...)
echo "<pre>";
var_dump($post);
echo "</pre>";
exit("1");
?>
Result:
[array] =>
"id" => 123,
"title" => xxx,
"content" => "yyy ÇÇ şşş İİÇ ĞŞÇŞİĞ <br> <p> asdasdasd </p> 123 .!?* ",
...
and all of the defined attr. listing here... (including query time and total match count[limits not necessary] )
Query time:
0.001 sec.
Mysql query and time (One query at the same time):
"SELECT * FROM my_posts WHERE id = 123123;" => 0.032 sec.
Mysql query and time (Under stress and 10000 query at the same time via 10 worker):
"SELECT * FROM my_posts WHERE id = 123123;"
=> 2.117 sec. (average)
=> 3.021 sec. (average of last 10 query)
Sphinx query(above) and time (One query at the same time):
0.001 sec.
Sphinx query(above) and time (Under stress and 10000 query at the same time via 10 worker):
=> 0.346 sec. (average)
=> 0.260 sec. (average of last 10 query)
So now, i have 8gb ram and intel x e3x4 processor +3m posts +12m tags...
Mysql clustering ? No, i am happy with sphinx(stability 1st, speedy 2nd, simple 3rd)...
No more mysql_connect :D
Sorry for my poor English