fulltext-engine
fulltext-engine copied to clipboard
Query your levelup/leveldb engine using full text search phrases with INDEXES
Does `fulltext-engine` support queries with high unicode code-points? For example, a search for `گربه ها`. If not, any idea where to begin on a PR?
``` dbl = LevelQuery(dbl) dbl.query.use(full_text_engine()) stream = dbl.query( key, value ) stream.on( "data", function() { console.log( "at some point i got enough" )} ); ``` At this point, how to...
Right now it's kind of tricky to use this with multilevel because of the methods on the query object. You need to get manually add them, but nesting objects with...
[This script](https://gist.github.com/juliangruber/7180723) searches for `ma` in a database full of all possible 3 character names, and it should find everything from `maa` to `maz`, but only finds `mas`. Here is...