I have a manticore index with the following configuration:
index book_archive {
type = rt
path = /book_archive
rt_field = title
rt_field = author
charset_table = non_cjk, cjk
stored_fields = title, author
}
I am trying to do a full text search, and order the results by the column, alphabetically. The following is an example query I am trying to use:
SELECT id,title FROM book_archive WHERE MATCH('(@title Test) ') ORDER BY title DESC LIMIT 20;
However, this is not properly sorting the results. After reading the documentation some more, it seems default ordering is by search weight. Is there any way to have the results sorted by alphabetical order, similar to a postgres or mysql text column?