-
Updated
Mar 10, 2022 - JavaScript
#
embedded-database
Here are 130 public repositories matching this topic...
Simple to use local JSON database. Powered by plain JavaScript (supports Node, Electron and the browser)
Transactional schema-less embedded database used by JetBrains YouTrack and JetBrains Hub.
kotlin
java
database
nosql
key-value
db
transactional
embedded-database
entity-store
log-structured
schema-less
snapshot-isolation
xodus
youtrack
-
Updated
Mar 29, 2022 - Java
Document-oriented, embedded SQL database
-
Updated
Mar 28, 2022 - Go
Fast Golang database for easy Go structs/objects persistence; plus out-of-the-box Data Sync
-
Updated
Mar 28, 2022 - Go
huahaiy
commented
Mar 1, 2021
good first issue
Good for newcomers
Java embedded nosql document store
-
Updated
Mar 29, 2022 - Java
Lightning Memory Database (LMDB) for Java: a low latency, transactional, sorted, embedded, key-value store
-
Updated
Mar 24, 2022 - Java
skyzh
commented
Feb 28, 2022
Currently, users will need to manually call pin and unpin. If there are futures cancelled or somehow, it is possible that we fail to unpin by ourselves.
We should implement a struct called Version, and implement Drop for it. pin will return a
-
Updated
Feb 15, 2022 - JavaScript
A fast, log structured key-value store.
-
Updated
Dec 14, 2021 - Java
ObjectBox Swift - persisting your Swift objects superfast and simple
-
Updated
Mar 28, 2022 - Swift
Python bindings for the UnQLite embedded NoSQL database
-
Updated
Feb 1, 2022 - C
Multiplatform NoSQL database
android
kotlin
embedded-database
kodein
kotlin-multiplatform
kotlin-database
kodein-db
kodein-framework
-
Updated
Sep 21, 2021 - Kotlin
A library for creating isolated embedded databases for Spring-powered integration tests.
postgres
spring-boot
postgresql
flyway
embedded-database
spring-framework
postgresql-database
flyway-postgresql
spring-test
embedded-postgresql
flyway-migrations
-
Updated
Feb 12, 2022 - Java
Authenticated multi-version database: sparse binary merkle tree with compact partial-tree proofs
database
lmdb
mvcc
embedded-database
merkle-tree
proofs
multi-version
lmdbxx
authenticated-dictionaries
-
Updated
Jan 14, 2022 - C++
Bow - Minimal embedded database powered by Badger
-
Updated
Nov 20, 2020 - Go
Advanced F# Support for LiteDB, an embedded NoSql database for .NET with type-safe query expression through F# quotations
-
Updated
Sep 18, 2021 - F#
Micro Graph Database for Python Applications
python
library
database
graph
nosql
network-graph
graph-database
embedded-database
triples
linkeddata
python-graph-database
embedded-graph-database
-
Updated
Jan 8, 2022 - Python
Ultra fast compact embedded database for tabular and semistructured data.
performance
nosql
storage-engine
mvcc
fpta
perfomance
embedded-database
acid
libmdbx
semistructured-data
-
Updated
Apr 1, 2022 - C++
Python bindings for the SQLite4 LSM database.
-
Updated
Aug 9, 2021 - C
Python bindings for the Vedis embedded NoSQL database
-
Updated
Nov 25, 2021 - C
A lightweight document-oriented NoSQL database written in pure Golang.
-
Updated
Mar 19, 2022 - Go
An embedded persistent key-value storage for Rust that is optimized for random-access workload and huge-capacity HDD
-
Updated
Sep 15, 2021 - Rust
A slick BTree on disk based key value store implemented in pure Go
-
Updated
Mar 13, 2019 - Go
Joedb, the Journal-Only Embedded Database
-
Updated
Apr 1, 2022 - C++
Fast Python bindings to Sophia Database
-
Updated
Dec 16, 2020 - C
Light, Embeddable, NoSQL database for Deno 🦕
javascript
light
json
data
typescript
embedded
database
embeddable
nosql
db
embedded-database
datastore
nosql-database
deno
-
Updated
Feb 23, 2022 - TypeScript
An easy-to-use, lightweight embedded on-disk database built on Badger for use in your Go programs.
-
Updated
Sep 14, 2020 - Go
Improve this page
Add a description, image, and links to the embedded-database topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the embedded-database topic, visit your repo's landing page and select "manage topics."
In Big Query there is a function array_concat_agg that aggregates array fields by concatenating the arrays. In Snowflake there is a flatten function that can unnest nested arrays into single array. I am looking for similar functionality in duckdb.
select flatten([[1, 2], [2, 3], [4, 5]]would return[1, 2, 2, 3, 4, 5]I would also need a distinct option:
`select flatten(DISTINCT [[1, 2],