-
Updated
Apr 12, 2022 - JavaScript
#
embedded-database
Here are 131 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
Apr 15, 2022 - Java
Document-oriented, embedded SQL database
-
Updated
Apr 25, 2022 - Go
huahaiy
commented
Mar 1, 2021
good first issue
Good for newcomers
Fast Golang database for easy Go structs/objects persistence; plus out-of-the-box Data Sync
-
Updated
Mar 28, 2022 - Go
skyzh
commented
Apr 24, 2022
If we find distinct value statistics is very small compared with row counts, we can use RLE encoding when building RowSets.
good first issue
Good for newcomers
Java embedded nosql document store
-
Updated
Apr 25, 2022 - Java
Lightning Memory Database (LMDB) for Java: a low latency, transactional, sorted, embedded, key-value store
-
Updated
Apr 20, 2022 - Java
-
Updated
Apr 22, 2022 - JavaScript
A fast, log structured key-value store.
-
Updated
Dec 14, 2021 - Java
ObjectBox Swift - persisting your Swift objects superfast and simple
-
Updated
Apr 5, 2022 - Swift
Python bindings for the UnQLite embedded NoSQL database
-
Updated
Apr 26, 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#
Open
Add code examples
4
ostafen
commented
Apr 18, 2022
Hi, all! In order to help new users getting started with clover quickly, it would be good to add an examples folder containing
several basic code samples showing the main feature of the library
documentation
Improvements or additions to documentation
enhancement
New feature or request
good first issue
Good for newcomers
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
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
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 24, 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
Go library for protobuf compatible sstables, a skiplist, a recordio format and other database building blocks like a write-ahead log. Ships now with an embedded key-value store.
database
protobuf
sstables
sstable
merge
skiplist
embedded-database
kaitai-struct
hacktoberfest
sst
key-value-store
recordio
kaitai
write-ahead-log
compaction
memstore
hacktoberfest2021
-
Updated
Mar 25, 2022 - 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],