tikv
diesel
Our great sponsors
tikv | diesel | |
---|---|---|
18 | 58 | |
12,563 | 9,870 | |
1.4% | 1.9% | |
9.6 | 9.6 | |
7 days ago | 7 days ago | |
Rust | Rust | |
Apache License 2.0 | Apache License 2.0 |
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
tikv
- Go devs that learned Rust, what are your thoughts on it?
-
Apache Pegasus – A a distributed key-value storage system
TiKV is basically a layer on top of rocksdb https://github.com/tikv/tikv/blob/956610725039835557e7516828...
-
Surrealdb – FOSS document-graph database, for the realtime web in Rust
> Many,many smart people…
If you look inside the code you can see the stated features are a result of underlying engine (TiKV [0] also in c and rust from pingcap). Surrealdb is standing on shoulders of giants at present, they are TiKV, FoundationDB and rocksdb. The feature set they mentioned mostly coming from TiKV at present.
-
Cloud database for tomorrow's applications (written in Rust)
Hi Diggsey, great question. We are currently focussed on functionality and stability, and then will draw our attention to performance. Coming this week we have a RocksDB storage implementation. We've only just launched our initial beta version, and we know there is a lot of improvement and work to be done (some of these performance issues we know about already and are on our Github issues list).
With regards to the consistency/isolation model, SurrealDB sits on top of a number of key-value stores. By using the distributed highly-available TiKV storage backend, https://tikv.org, (and we have a FoundationDB integration in the works), the database is designed to be highly-scalable and highly-available. The same guarantees (albeit just single-node, so no high-availability or scalability) will be available with the RocksDB implementation coming this week. By sitting on top of these key-value stores, SurrealDB ensures that all transactions are ACID compliant. We don't want to go for speed (for instance by writing to /dev/null) over anything, but want SurrealDB to be a reliable and performant backend for any application. Obviously we have a way to go to catch up with PostgreSQL (launched in 1996), but we will strive to get there!
-
CeresDB: A high-performance, distributed, schema-less and time-series database
If you are looking for a production ready distributed store written in Rust. Check out TiKV(https://github.com/tikv/tikv), which was also mentioned in the acknowledge section of the project's README.
There's also a full-featured distributed RDBMS called TiDB built on top of TiKV.
-
Fly.io – Free Postgres Databases (and free storage volumes, up to 3GB total)
Fair enough. Indeed I didn't consider support costs. Thank you for your answer!
Actually let me ask another thing. Your FAQ mentions you're considering hosting CockroachDB as a drop-in distributed replacement for PostgreSQL [0], and also you currently offer a distributed, eventually consistent PostgreSQL replication solution [1].
Is either Tikv [2] (distributed key-value store) or Tidb [3] (distributed database with a mysql interface, built on top of Tikv) on your radar?
You already offer Redis as a key-value store, but Tikv has an amazing property: it ensures strong consistency globally (not eventual consistency). Tidb, being built on top of Tikv, also has strong consistency.
[0] https://fly.io/blog/fly-answers-questions/#q-what-is-fly-doi...
[1] https://fly.io/blog/globally-distributed-postgres/
-
NoSQL and Key-Value storage systems based on Rust (Redis and Tarantool replacements in Rust)
tikv — A distributed KV database in Rust
-
Belajar Rust 01 - Mengenal Bahasa Pemrograman Rust
TiKV: basis data key-value transaksional yang terdistribusi.
-
Dive Deep into TiKV Transactions: The Life Story of a TiKV Prewrite Request
Before I introduce this phase, I'd like to talk about the batch system. It is the cornerstone of TiKV's multi-raft implementation.
TiKV is a distributed key-value storage engine, which is based on the designs of Google Spanner, F1, and HBase. However, TiKV is much simpler to manage because it does not depend on a distributed file system.
diesel
-
Rust and its friendly crates: Don't miss out on them!
diesel
-
Ormlite: An ORM in Rust for developers that love SQL
Congratulations to the release. I know all of this is hard work. I would like to invite you to submit a ormlite implementation to the diesel benchmark collection. As soon as that's merged you will get regular reports here. The relevant code is here in the diesel repository.
-
Destructive move in C++2
Doing arbitrary syntax transformations in procedural macros is not powerful enough? Does C++ have something like serde or diesel?
-
State of Rust for web backends
I've been building a relatively small project with axum and diesel, and I'm pretty happy with it.
-
Using Rust at a startup: A cautionary tale
There's also Diesel and SeaORM for higher level interfaces.
-
Learning Rust from C and Java?
diesel rs: https://diesel.rs/
-
Which framework is better for backend?
For connecting and performing queries on the db, I prefer diesel.
-
SQL and Rust
It's not even a libpq issue, but an issue with a specific libpq distribution. You just need to use a not broken version of libpq or ask the vendor of that specific libpq version to fix their binary. See here for a in depth discussion. Calling diesel or libpq to be responsible for this is rather strange.
- What Makes the Zig Programming Language Unique?
-
Initial release of diesel-async
Diesel is a Safe, Extensible ORM and Query Builder for Rust diesel-async is an pure rust fully async connection implementation for Diesel. It provides connection implementations for the Diesel PostgreSQL and MySQL backend. It is designed to be used as drop in replacement for the sync connection implementations in Diesel. diesel-async support almost all the functionality provided by diesel (beside migrations), so it features the same compile time guarantees as Diesel itself. It reuses Diesels query builder infrastructure here.
What are some alternatives?
sqlx - 🧰 The Rust SQL Toolkit. An async, pure Rust SQL crate featuring compile-time checked queries without a DSL. Supports PostgreSQL, MySQL, SQLite, and MSSQL.
sea-orm - 🐚 An async & dynamic ORM for Rust
redis-rs - Redis library for rust
rust-etcd - An etcd client library for Rust.
rustorm - an orm for rust
rbatis - Rust Compile Time ORM and SQL Toolkit. async, pure Rust compile-time Dynamic SQL
r2d2 - A generic connection pool for Rust
rust-rocksdb - rust wrapper for rocksdb
rusqlite-model - Model trait and derive implementation for rusqlite
cassandra-rs - Cassandra (CQL) driver for Rust, using the DataStax C/C++ driver under the covers.
rust-postgres - Native PostgreSQL driver for the Rust programming language
cassandra-rust