-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
177 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
/// Lets try to push to the limits of Firefly | ||
/// ffly -c 0 -s 300 | ||
/// cargo run --release --example push_it | ||
/// | ||
/// Performance on a 16gb - Intel i7-10510U (8 cores @ 4.9GHz) | ||
/// ~167k ops/sec | ||
use ffly_rs::FireflyStream; | ||
use std::{iter::repeat_with, time::Instant}; | ||
use uuid::Uuid; | ||
|
||
static FIREFLY_ADDR: &'static str = "127.0.0.1:46600"; | ||
|
||
static THREADS: usize = 10; | ||
static REQUESTS_TOTAL: usize = 1_000_000; | ||
|
||
async fn add_records(amount: usize) { | ||
let firefly = FireflyStream::connect(FIREFLY_ADDR).await.unwrap(); | ||
let user = Uuid::new_v4().to_string(); | ||
|
||
for _ in 0..amount { | ||
let key: String = repeat_with(fastrand::alphanumeric).take(64).collect(); | ||
|
||
firefly.new(&key, &user).await.expect("Query failed!") | ||
} | ||
} | ||
|
||
#[tokio::main] | ||
async fn main() { | ||
let requests_per_thread = REQUESTS_TOTAL / THREADS; | ||
let mut futures = Vec::with_capacity(THREADS); | ||
|
||
for _ in 0..THREADS { | ||
futures.push(add_records(requests_per_thread)); | ||
} | ||
|
||
println!( | ||
"Starting to send {} requests per thread. ({} threads, {} requests in total)", | ||
requests_per_thread, THREADS, REQUESTS_TOTAL | ||
); | ||
let start = Instant::now(); | ||
futures::future::join_all(futures).await; | ||
println!( | ||
"Created {} new records by using {} connections in {:?}.", | ||
REQUESTS_TOTAL, | ||
THREADS, | ||
start.elapsed() | ||
); | ||
println!( | ||
"This comes down to {} requests per second.", | ||
REQUESTS_TOTAL / start.elapsed().as_secs() as usize | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
/// Script to compare the results of firefly with an identical redis script. | ||
/// redis - default config from paru | ||
/// cargo run --release --example push_it_redis | ||
/// | ||
/// Performance on a 16gb - Intel i7-10510U (8 cores @ 4.9GHz) | ||
/// ~67k ops/sec | ||
use std::{iter::repeat_with, time::Instant}; | ||
use uuid::Uuid; | ||
|
||
static THREADS: usize = 10; | ||
static REQUESTS_TOTAL: usize = 1_000_000; | ||
|
||
async fn add_records(amount: usize) { | ||
let client = redis::Client::open("redis://127.0.0.1/").unwrap(); | ||
let mut con = client.get_connection().unwrap(); | ||
let user = Uuid::new_v4().to_string(); | ||
|
||
for _ in 0..amount { | ||
let key: String = repeat_with(fastrand::alphanumeric).take(64).collect(); | ||
|
||
let _: () = redis::cmd("SET") | ||
.arg(&key) | ||
.arg(&user) | ||
.query(&mut con) | ||
.unwrap(); | ||
} | ||
} | ||
|
||
#[tokio::main] | ||
async fn main() { | ||
let requests_per_thread = REQUESTS_TOTAL / THREADS; | ||
let mut futures = Vec::with_capacity(THREADS); | ||
|
||
for _ in 0..THREADS { | ||
futures.push(add_records(requests_per_thread)); | ||
} | ||
|
||
println!( | ||
"Starting to send {} requests per thread. ({} threads, {} requests in total)", | ||
requests_per_thread, THREADS, REQUESTS_TOTAL | ||
); | ||
let start = Instant::now(); | ||
futures::future::join_all(futures).await; | ||
println!( | ||
"Created {} new records by using {} connections in {:?}.", | ||
REQUESTS_TOTAL, | ||
THREADS, | ||
start.elapsed() | ||
); | ||
println!( | ||
"This comes down to {} requests per second.", | ||
REQUESTS_TOTAL / start.elapsed().as_secs() as usize | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
/// Script to compare the results of firefly with an identical skytable script. | ||
/// skytable - default | ||
/// cargo run --release --example push_it_skytable | ||
/// | ||
/// Performance on a 16gb - Intel i7-10510U (8 cores @ 4.9GHz) | ||
/// ~143 ops/sec | ||
use skytable::actions::AsyncActions; | ||
use std::{iter::repeat_with, time::Instant}; | ||
use uuid::Uuid; | ||
|
||
static THREADS: usize = 10; | ||
static REQUESTS_TOTAL: usize = 1_000_000; | ||
|
||
async fn add_records(amount: usize) { | ||
let mut skytable = skytable::AsyncConnection::new("127.0.0.1", 2003) | ||
.await | ||
.unwrap(); | ||
|
||
let user = Uuid::new_v4().to_string(); | ||
|
||
for _ in 0..amount { | ||
let key: String = repeat_with(fastrand::alphanumeric).take(64).collect(); | ||
|
||
skytable.set(&key, &user).await.unwrap(); | ||
} | ||
} | ||
|
||
#[tokio::main] | ||
async fn main() { | ||
let requests_per_thread = REQUESTS_TOTAL / THREADS; | ||
let mut futures = Vec::with_capacity(THREADS); | ||
|
||
for _ in 0..THREADS { | ||
futures.push(add_records(requests_per_thread)); | ||
} | ||
|
||
println!( | ||
"Starting to send {} requests per thread. ({} threads, {} requests in total)", | ||
requests_per_thread, THREADS, REQUESTS_TOTAL | ||
); | ||
let start = Instant::now(); | ||
futures::future::join_all(futures).await; | ||
println!( | ||
"Created {} new records by using {} connections in {:?}.", | ||
REQUESTS_TOTAL, | ||
THREADS, | ||
start.elapsed() | ||
); | ||
println!( | ||
"This comes down to {} requests per second.", | ||
REQUESTS_TOTAL / start.elapsed().as_secs() as usize | ||
); | ||
} |