Quote:
Originally Posted by thiago.eec
I took a deeper look at the plugin. All files are converted to TXT, then passed to ElasticSearch. So, the allowed formats can be any of those handled by calibre. I changed the supported list to include DOC, AZW3, AZW4 and KFX and they all got indexed.
|
Good to know, thanks!
I just decided to be conservative in first releases and support only those book formats that I could test well enough. I will extend this list in next release once I make sure it works well.
Quote:
Originally Posted by thiago.eec
I did a simple test here, and changing query from "match" to "match_phrase" did the job allowing phrases and compound words. Using "query_string" isn't that easy, though.
|
My final goal is to implement search synax and semantic similar to Google search. After all, when doing search in Google we aren't using regular expressions, are we?
This however means that I would need to find a way of sorting results according to relevance. Don't know how easy is it to do in Calibre, but generally it seems to me a right way to go.