Sphinx reindex RT Index

I have an sphinx RT index, but I forgot to add morphology at the beginning of inserting records :( Can I restore the RT index without losing data? My configuration:

index track {
    type = rt
    path = /var/...
    other options...
}

searchd {
    listen = 127.0.0.1:9306:mysql41
    workers = threads
    other options...
}

I want to add morphology = stemenruto the index section, but the indexer of the index --all --rotate has no results.

+3
source share
1 answer

You will need to delete the index and start over.

It is not possible to change the morphology after creating the index (since it changes the storage order of words)

... indexerdoes not play a role in RT indices. RT indices are fully manageable searchd.

+4
source

All Articles