hoelzro / tw-full-text-search

Full text search plugin for TiddlyWiki powered by lunr.js
https://hoelz.ro/files/fts.html
Other
25 stars 4 forks source link

AND searches by default? #31

Open hoelzro opened 5 years ago

hoelzro commented 5 years ago

See #3

TiddlyWiki's own search uses "AND" style logic by default - we should probably do the same!

diego898 commented 5 years ago

if AND is the default, how would we specify OR? How does Google handle and/or?

hoelzro commented 5 years ago

As far as I know, Google does OR by default, but weights results that contain more of the search terms higher. The FTS plugin does this too, but I think that this behavior can be a little confusing, since TiddlyWiki's default search uses AND.

If I decided to add this, I would probably just change the query language to accept "A OR B" and "A AND B", and remove the "+A +B" syntax.