Advertisement
wwweo

sphinx_conf

Jan 25th, 2015
228
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.12 KB | None | 0 0
  1. ### Openpiratebay
  2.  
  3. source opb_dbconnect {
  4. type = mysql
  5.  
  6. sql_host = 127.0.0.1
  7. sql_user = mpbusr
  8. sql_pass = mpbpwd
  9. sql_db = mpb
  10. sql_port = 3306
  11.  
  12. sql_query_pre = SET NAMES utf8
  13. }
  14.  
  15. index opb_common {
  16. docinfo = extern
  17. charset_type = utf-8
  18. charset_table = 0..9, A..Z->a..z, a..z, U+410..U+42F->U+430..U+44F, U+430..U+44F
  19.  
  20. enable_star = 1
  21. expand_keywords = 1
  22. index_exact_words = 1
  23. morphology = stem_enru
  24. min_stemming_len = 4
  25. dict = keywords
  26.  
  27. ngram_len = 1
  28. ngram_chars = U+4E00..U+9FBB, U+3400..U+4DB5, U+20000..U+2A6D6, U+FA0E, U+FA0F, U+FA11, U+FA13, U+FA14, U+FA1F, U+FA21, U+FA23, U+FA24, U+FA27, U+FA28, U+FA29, U+3105..U+312C, U+31A0..U+31B7, U+3041, U+3043, U+3045, U+3047, U+3049, U+304B, U+304D, U+304F, U+3051, U+3053, U+3055, U+3057, U+3059, U+305B, U+305D, U+305F, U+3061, U+3063, U+3066, U+3068, U+306A..U+306F, U+3072, U+3075, U+3078, U+307B, U+307E..U+3083, U+3085, U+3087, U+3089..U+308E, U+3090..U+3093, U+30A1, U+30A3, U+30A5, U+30A7, U+30A9, U+30AD, U+30AF, U+30B3, U+30B5, U+30BB, U+30BD, U+30BF, U+30C1, U+30C3, U+30C4, U+30C6, U+30CA, U+30CB, U+30CD, U+30CE, U+30DE, U+30DF, U+30E1, U+30E2, U+30E3, U+30E5, U+30E7, U+30EE, U+30F0..U+30F3, U+30F5, U+30F6, U+31F0, U+31F1, U+31F2, U+31F3, U+31F4, U+31F5, U+31F6, U+31F7, U+31F8, U+31F9, U+31FA, U+31FB, U+31FC, U+31FD, U+31FE, U+31FF, U+AC00..U+D7A3, U+1100..U+1159, U+1161..U+11A2, U+11A8..U+11F9, U+A000..U+A48C, U+A492..U+A4C6
  29.  
  30. preopen = 1
  31. }
  32.  
  33. source opbtorrents : opb_dbconnect {
  34. sql_query_range = SELECT MIN(id), MAX(id) FROM torrents
  35. sql_range_step = 100000
  36. sql_query = SELECT tr.id AS id, tr.hash, tr.name, tr.tags, tr.category_id, UNIX_TIMESTAMP(tr.created_at) AS created_at, tr.size, tr.downloads_count, tr.seeders, tr.leechers, tr.torrent_status, \
  37. tr.visible_status, \
  38. tr.files_count AS files_count \
  39. FROM `torrents` AS tr \
  40. WHERE tr.id BETWEEN $start AND $end \
  41. GROUP BY tr.id
  42.  
  43. sql_field_string = name
  44. sql_field_string = tags
  45. sql_attr_uint = category_id
  46. sql_attr_timestamp = created_at
  47. sql_attr_bigint = size
  48. sql_attr_uint = downloads_count
  49. sql_attr_uint = seeders
  50. sql_attr_uint = leechers
  51. sql_attr_uint = torrent_status
  52. sql_attr_uint = visible_status
  53. sql_attr_uint = files_count
  54. sql_attr_string = hash
  55.  
  56. }
  57.  
  58. index opbtorrents : opb_common {
  59. source = opbtorrents
  60. path = /var/lib/sphinxsearch/data/opbtorrents2
  61. min_infix_len = 3
  62. dict = keywords
  63. }
  64.  
  65. indexer {
  66. mem_limit = 512M
  67. }
  68.  
  69. searchd {
  70. listen = 3312
  71. listen = 9306:mysql41
  72. listen = 9306
  73. log = /var/log/sphinxsearch/searchd.log
  74. read_timeout = 5
  75. max_children = 0
  76. pid_file = /var/run/sphinxsearch/searchd.pid
  77. max_matches = 100000
  78. seamless_rotate = 0
  79. preopen_indexes = 1
  80. unlink_old = 1
  81. workers = threads
  82. binlog_path = /var/lib/sphinx
  83. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement