Sha256: 7cf2002ba5d554d6e341a40031ae082b45f42a58a446c8faac36dc0f83bd8a71
Contents?: true
Size: 1.42 KB
Versions: 3
Compression:
Stored size: 1.42 KB
Contents
# searchd and indexer must be run from the root directory of this lib. indexer { mem_limit = 64M } searchd { address = localhost port = 3312 log = test/var/sphinx.log query_log = test/var/sphinx.query.log read_timeout = 5 pid_file = test/var/sphinx.pid max_matches = 1000 } source items { type = mysql sql_host = localhost sql_user = root sql_pass = sql_db = dm_sphinx_adapter_test sql_query_pre = set names utf8 sql_query_pre = \ replace into delta (name, updated_on) ( \ select 'items', updated_on \ from items \ order by updated_on desc \ limit 1\ ) sql_query = \ select id, name, likes, unix_timestamp(updated_on) as updated_on \ from items \ where updated_on <= ( \ select updated_on \ from delta \ where name = 'items'\ ) sql_query_info = select * from items where id = $id sql_attr_timestamp = updated_on } source items_delta : items { sql_query_pre = set names utf8 sql_query = \ select id, name, likes, unix_timestamp(updated_on) as updated_on \ from items \ where updated_on > ( \ select updated_on \ from delta \ where name = 'items'\ ) } index items { source = items path = test/var/sphinx/items } index items_delta : items { source = items_delta path = test/var/sphinx/items_delta } index vanillas { type = distributed local = items }
Version data entries
3 entries across 3 versions & 2 rubygems
Version | Path |
---|---|
shanna-dm-sphinx-adapter-0.4 | test/files/sphinx.conf |
shanna-dm-sphinx-adapter-0.5 | test/files/sphinx.conf |
dm-sphinx-adapter-0.5 | test/files/sphinx.conf |