eneszh
Introduction

InceptionDB

This is inceptiondb in markdown

¿Qué es InceptionDB?

InceptionDB es un sistema de base de datos NoSQL orientado a documentos.

En lugar de guardar los datos en tablas (como en las bases de datos relacionales), guarda estructuras de datos JSON en colecciones con un esquema dinámico, haciendo que la integración de los datos en las aplicaciones sea más fácil.

Está completamente implementado en Go (el lenguaje de programación de Google) por lo que está disponible para prácticamente cualquier sistema operativo y arquitectura, podrías instalar InceptionDB en tu móvil.

Características principales

Consultas

Indexación

Replicación

Ejecución de JavaScript

Ejemplo de código

1func Hello() string {
2	return "Hello"
3}

Y esto es otro bloque de código:

1function Hello() {
2    return "Hello"
3}
1GET / HTTP/1.1
2Host: www.example.com
3User-Agent: Mozilla/5.0
4Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,*/*;q=0.8
5Accept-Language: en-GB,en;q=0.5
6Accept-Encoding: gzip, deflate, br
7Connection: keep-alive
8
9Hello WOrld
 1HTTP/1.1 200 OK
 2Date: Mon, 23 May 2005 22:38:34 GMT
 3Content-Type: text/html; charset=UTF-8
 4Content-Length: 155
 5Last-Modified: Wed, 08 Jan 2003 23:11:55 GMT
 6Server: Apache/1.3.3.7 (Unix) (Red-Hat/Linux)
 7ETag: "3f80f-1b6-3e1cb03b"
 8Accept-Ranges: bytes
 9Connection: close
10
11<html>
12  <head>
13    <title>An Example Page</title>
14  </head>
15  <body>
16    <p>Hello World, this is a very simple HTML document.</p>
17  </body>
18</html>
 1HTTP/1.1 200 OK
 2Date: Mon, 23 May 2005 22:38:34 GMT
 3Content-Type: application/json; charset=UTF-8
 4Content-Length: 155
 5Last-Modified: Wed, 08 Jan 2003 23:11:55 GMT
 6Server: Apache/1.3.3.7 (Unix) (Red-Hat/Linux)
 7ETag: "3f80f-1b6-3e1cb03b"
 8Accept-Ranges: bytes
 9Connection: close
10
11{
12    "hello": "world",
13    "numbers": [1,2,3]
14}