How well does that handle the storage disappearing halfway through a write? How well does it handle power being cut halfway through an update of some sort? How well does it handle some of the written blocks actually making it to the disc and others not? How about if the ones that made it were not the first or the last it issued to be written? (For predictable answers to these, and many other complex questions, when d…
An embedded database written in Rust
11–20 of 74 posts
Re: An embedded database written in Rust
#12No clustering :( I feel like good multi-master asynchronous and synchronous clustering is truly the frontier in DBs.
You can't cluster an embedded database, this comment makes not sense. Compare with SQLite, not with Orcale or Postgres.
Re: An embedded database written in Rust
#13No clustering :( I feel like good multi-master asynchronous and synchronous clustering is truly the frontier in DBs.
Re: An embedded database written in Rust
#14No clustering :( I feel like good multi-master asynchronous and synchronous clustering is truly the frontier in DBs.
Re: An embedded database written in Rust
#15Re: An embedded database written in Rust
#16Re: An embedded database written in Rust
#17I see that MVCC is a planned feature. Why would you need MVCC for an embedded database? It seems like unnecessary overhead that conflicts with the performance goals.
Re: An embedded database written in Rust
#18I see that MVCC is a planned feature. Why would you need MVCC for an embedded database? It seems like unnecessary overhead that conflicts with the performance goals.
Re: An embedded database written in Rust
#19No clustering :( I feel like good multi-master asynchronous and synchronous clustering is truly the frontier in DBs.
what do you think of FoundationDb?
Re: An embedded database written in Rust
#20No clustering :( I feel like good multi-master asynchronous and synchronous clustering is truly the frontier in DBs.
What about TiKV ( https://github.com/pingcap/tikv ), a distributed transactional Key-Value store?