We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The reason i'm trying blinikDB is to have fast queryable data in memory. I was sad to see no substring search filters.
I'd love to see something like the following
where: { prefix: "hell" } # returns hello
or
where: { substring: "no" } # returns: note, gnome, monosodium, etc.
Dexie.js has a function for prefix filtering, but no substring filter.
The text was updated successfully, but these errors were encountered:
Like I briefly mentioned in #34, implementing this in BlinkDB would provide no performance benefit over
const users = (await many(userTable)) .filter(u => u.startsWith("hell"));
I'm considering adding support for custom function filters in BlinkDB, which would also cover this case.
Sorry, something went wrong.
Ok. Thank you.
No branches or pull requests
The reason i'm trying blinikDB is to have fast queryable data in memory.
I was sad to see no substring search filters.
I'd love to see something like the following
or
Dexie.js has a function for prefix filtering, but no substring filter.
The text was updated successfully, but these errors were encountered: