-
Updated
May 16, 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
May 26, 2022 - Java
Document-oriented, embedded SQL database
-
Updated
May 29, 2022 - Go
huahaiy
commented
Mar 1, 2021
good first issue
Good for newcomers
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.
Fast Golang database for easy Go structs/objects persistence; plus out-of-the-box Data Sync
-
Updated
Mar 28, 2022 - Go
Java embedded nosql document store
-
Updated
May 28, 2022 - Java
Lightning Memory Database (LMDB) for Java: a low latency, transactional, sorted, embedded, key-value store
-
Updated
Apr 20, 2022 - Java
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
May 22, 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
ostafen
commented
May 9, 2022
Hi, all. Currently, clover allows to access nested document fields by the following syntax:
doc.Get("field1.field2.field3")Now, suppose that field2 is a slice. It would be useful to support indexing elements by the following syntax:
doc.Get("field1.field2.4.field3") // here, we are trying to access the fifth element of "field2"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
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
May 14, 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
Unofficial mirror of HSQLDB, namely HyperSQL Database. It is a relational database management system and a set of tools written in Java. For h2, see: https://github.com/h2database/h2database
-
Updated
May 29, 2022 - Java
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],