RaptorDB-Document
RaptorDB-Document copied to clipboard
operation issue
"keyword1 keyword2" means keyword1 AND keyword2 "keyword1 keyword2 -keyword3" should means include both keyword1 and keyword2, but could not have keyword3, right? when I used this, I got the result only includes keywords3, just like I search with "keyword3" only.
It seems to work correctly with the sample app and data, and yes it should include key1,key2 and exclude key3.
Make sure you are on the latest build.
sorry, wrong place, should be an issue of https://github.com/mgholam/hOOt
Ah yes! hOOt
needs some love, I'm trying to free some time for it.
I made a dirty solution to combine hOOt with RaptorDB-Document, with some modification. It works now and the bug was fixed.
but there is another issue, in old hOOt, punctuation will be ignored, but RaptorDB will keep the punctuation, so I have to replace punctuation with blank space before indexing.
I am wondering if change the code of not
if (!(char.IsLetterOrDigit(c) || char.IsPunctuation(c) )) // rdb specific