- Notifications
You must be signed in to change notification settings - Fork9
IndexedDB#6
New issue
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
base:master
Are you sure you want to change the base?
Uh oh!
There was an error while loading.Please reload this page.
Conversation
CLAassistant commentedJun 25, 2020 • edited
Loading Uh oh!
There was an error while loading.Please reload this page.
edited
Uh oh!
There was an error while loading.Please reload this page.
strangernr7 left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others.Learn more.
Don't have the time to finish, but I noticed a couple of changes needed
- Supports key range queries, indexes. | ||
- Can store much bigger volumes of data than `localStorage`. | ||
- Slaat bijna elke soort waarde per key op, er zijn meerdere types key nodig. | ||
- Ondersteund transacties voor betrouwbaarheid. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others.Learn more.
-Ondersteund transacties voor betrouwbaarheid. | |
-Ondersteunt transacties voor betrouwbaarheid. |
You had ondersteund here but ondersteunt below
-Slaat bijna elke soort waarde per key op, er zijn meerderetypes key nodig. | ||
-Ondersteund transacties voor betrouwbaarheid. | ||
-Ondersteunt queries vankeyranges en indexen. | ||
-Kan een grotervolumes dataopslaan dan `localStorage`. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others.Learn more.
- Kaneen groter volumes data opslaan dan`localStorage`. | |
- Kanveel grotere hoeveelheden gegevens opslaan dan`localStorage`. |
That power is usually excessive for traditionalclient-server apps. IndexedDB isintended for offline apps,to be combined withServiceWorkersand other technologies. | ||
Deze mogelijkheden zijn normaal gesproken excessief voor traditioneleclient-server apps. IndexedDB isbedoeld voor offline apps,om gecombineerd te worden met metServiceWorkersen andere technologiën. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others.Learn more.
Deze mogelijkheden zijn normaal gesproken excessief voor traditionele client-server apps. IndexedDB is bedoeld voor offline apps, om gecombineerd te worden metmetServiceWorkers en andere technologiën. | |
Deze mogelijkheden zijn normaal gesproken excessief voor traditionele client-server apps. IndexedDB is bedoeld voor offline apps, om gecombineerd te worden met ServiceWorkers en andere technologiën. |
The native interface to IndexedDB, described in the specification <https://www.w3.org/TR/IndexedDB>, is event-based. | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others.Learn more.
I'm pretty sure this is an extra line
De functie geeft een`openRequest` object, wekunnen naar de eventsin dit object luisteren: | ||
- `success`:dedatabase isgereed, er is een"database object" in `openRequest.result`,die wekunnen gebruiken voor verdere functie invocaties. | ||
- `error`:openen van de database is gefaald. | ||
- `upgradeneeded`:dedatabase isgereed, maar de versie isverouderd ( zie onderstaand ) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others.Learn more.
-`upgradeneeded`: de database is gereed, maar de versie is verouderd (zie onderstaand) | |
-`upgradeneeded`: de database is gereed, maar de versie is verouderd (zie onderstaand) |
Nitpick
**IndexedDBhas a built-in mechanism of "schemaversioning",absentin server-side databases.** | ||
**IndexedDBheeft een ingebouwd mechanisme van "schemaversies", integenstelling totserver-side databases** |
strangernr7Apr 2, 2021 • edited
Loading Uh oh!
There was an error while loading.Please reload this page.
edited
Uh oh!
There was an error while loading.Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others.Learn more.
**IndexedDB heeft een ingebouwd mechanisme van "schema versies", in tegenstelling tot server-side databases** | |
**IndexedDB heeft een ingebouwd mechanisme van "schema versies", in tegenstelling tot server-side databases.** |
Again, nitpick
javascript-translate-bot commentedApr 2, 2021
Please make the requested changes. After it, add a comment "/done". |
No description provided.