blob: 3de62f637f7bff824c55a2e68432cd0e8880701a (
plain)
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
#
# Minimal Sphinx configuration sample for statusnet
#
source src1
{
type = mysql
sql_host = localhost
sql_user = USERNAME
sql_pass = PASSWORD
sql_db = identi_ca
sql_port = 3306
sql_query = SELECT id, UNIX_TIMESTAMP(created) as created_ts, nickname, fullname, location, bio, homepage FROM profile
sql_query_info = SELECT * FROM profile where id = $id
sql_attr_timestamp = created_ts
}
source src2
{
type = mysql
sql_host = localhost
sql_user = USERNAME
sql_pass = PASSWORD
sql_db = identi_ca
sql_port = 3306
sql_query = SELECT id, UNIX_TIMESTAMP(created) as created_ts, content FROM notice
sql_query_info = SELECT * FROM notice where notice.id = $id AND notice.is_local != -2
sql_attr_timestamp = created_ts
}
index identica_notices
{
source = src2
path = DIRECTORY/data/identica_notices
docinfo = extern
charset_type = utf-8
min_word_len = 3
stopwords = DIRECTORY/data/stopwords-en.txt
}
index identica_people
{
source = src1
path = DIRECTORY/data/identica_people
docinfo = extern
charset_type = utf-8
min_word_len = 3
stopwords = DIRECTORY/data/stopwords-en.txt
}
indexer
{
mem_limit = 32M
}
searchd
{
port = 3312
log = DIRECTORY/log/searchd.log
query_log = DIRECTORY/log/query.log
read_timeout = 5
max_children = 30
pid_file = DIRECTORY/log/searchd.pid
max_matches = 1000
seamless_rotate = 1
preopen_indexes = 0
unlink_old = 1
}
|