We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
For performance, as well as symmetry with IDBIndex, add getKey() to IDBObjectStore
IDBIndex
getKey()
IDBObjectStore
get(key)
count(query)
openCursor(query)
The text was updated successfully, but these errors were encountered:
88ec0f8
No branches or pull requests
For performance, as well as symmetry with
IDBIndex
, addgetKey()
toIDBObjectStore
get(key)
but pay the cost to transport/deserialize the value and don't know which key in a range was foundcount(query)
, but also don't find out the exact keyopenCursor(query)
and simply not continue the cursor, with minor overhead costThe text was updated successfully, but these errors were encountered: