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
in flashStore.values, {lte: 10} result is 3, while {gte: 10} result is 5
flashStore.values
{lte: 10}
{gte: 10}
snip as follows:
import { FlashStore } from '../src/flash-store' async function main() { const flashStore = new FlashStore('falshstore.workdir') console.log('all values') for await (const value of flashStore.values()) { console.log(value) } console.log('value gte 10') for await (const value of flashStore.values({gte: 10})) { console.log(value) } console.log('value lte 10') for await (const value of flashStore.values({lte: 10})) { console.log(value) } } main()
output as follows:
all values 3 5 value gte 10 5 value lte 10 3
The text was updated successfully, but these errors were encountered:
add unit test: lte/gte option are not work (#4)
fe6d00e
add knowned issues (#4)
63f15d7
Confirmed, and added to known issues.
It seems that we are not passing the right parameters to the leveldown abstract API (to be confirmed).
Sorry, something went wrong.
No branches or pull requests
in
flashStore.values
,{lte: 10}
result is 3, while{gte: 10}
result is 5snip as follows:
output as follows:
The text was updated successfully, but these errors were encountered: