Memory Mapped Files DB #554
solarsystemic
started this conversation in
Language Development
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Note that Rust's www.meilisearch.com uses Lightning Database uses memory mapped files. Rust: with Sled and JammDB - MMF's as well.
I tried APL and J memory mapped files - fast and easy. Create empty small to huge arrays then store and pick any index - one by one. Very similar - perhaps to https://www.symas.com/lmdb which is tiny and faster than sqlite. Lightning is also ACID. https://en.wikipedia.org/wiki/Lightning_Memory-Mapped_Database One or more Rust wrappers - https://docs.rs/heed/latest/heed/ Safe persistence and speed and ease -great game DB?
Related Rust simple DB's
https://users.rust-lang.org/t/in-memory-databases-as-first-class-types/66604
https://github.com/droundy/polygraph
https://github.com/georgebarwood/RustDB - interesting
Beta Was this translation helpful? Give feedback.
All reactions