diff options
author | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:41:45 -0500 |
---|---|---|
committer | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:41:45 -0500 |
commit | 1109132f09d75da9a28b649c7677bb6ce07c40c0 (patch) | |
tree | 0dd8b084480983cf9f9680e8aedb92782a921b13 /files/es/glossary/indexeddb/index.html | |
parent | 4b1a9203c547c019fc5398082ae19a3f3d4c3efe (diff) | |
download | translated-content-1109132f09d75da9a28b649c7677bb6ce07c40c0.tar.gz translated-content-1109132f09d75da9a28b649c7677bb6ce07c40c0.tar.bz2 translated-content-1109132f09d75da9a28b649c7677bb6ce07c40c0.zip |
initial commit
Diffstat (limited to 'files/es/glossary/indexeddb/index.html')
-rw-r--r-- | files/es/glossary/indexeddb/index.html | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/files/es/glossary/indexeddb/index.html b/files/es/glossary/indexeddb/index.html new file mode 100644 index 0000000000..3b54713288 --- /dev/null +++ b/files/es/glossary/indexeddb/index.html @@ -0,0 +1,13 @@ +--- +title: IndexedDB +slug: Glossary/IndexedDB +translation_of: Glossary/IndexedDB +--- +<p>IndexedDB es una {{glossary("API")}} Web diseñada para almacenar estructuras de datos grandes en los navegadores e indexarlas para realizar búsquedas de alto rendimiento. Al igual que los sistemas <a href="https://es.wikipedia.org/wiki/Sistema_de_gesti%C3%B3n_de_bases_de_datos_relacionales" title="Relational DataBase Managment System">RDBMS</a> basados en {{glossary("SQL")}}, IndexedDB es un sistema de base de datos transaccional. Sin embargo, usa objetos de {{glossary("JavaScript")}} en vez de columnas fijas para almacenar los datos.</p> + +<h2 id="Conoce_más">Conoce más</h2> + +<ul> + <li>La {{domxref('IndexedDB_API','API de IndexedDB','',1)}} en MDN</li> + <li><a href="http://w3c.github.io/IndexedDB/">Las especificaciones W3C de IndexedDB</a></li> +</ul> |