diff --git a/rust/benches/evaluator.rs b/rust/benches/evaluator.rs
index 35f7a50bce..229553ebf8 100644
--- a/rust/benches/evaluator.rs
+++ b/rust/benches/evaluator.rs
@@ -16,6 +16,7 @@
use std::collections::BTreeSet;
use synapse::push::{
evaluator::PushRuleEvaluator, Condition, EventMatchCondition, FilteredPushRules, PushRules,
+ SimpleJsonValue,
};
use test::Bencher;
@@ -24,9 +25,18 @@ extern crate test;
#[bench]
fn bench_match_exact(b: &mut Bencher) {
let flattened_keys = [
- ("type".to_string(), "m.text".to_string()),
- ("room_id".to_string(), "!room:server".to_string()),
- ("content.body".to_string(), "test message".to_string()),
+ (
+ "type".to_string(),
+ SimpleJsonValue::Str("m.text".to_string()),
+ ),
+ (
+ "room_id".to_string(),
+ SimpleJsonValue::Str("!room:server".to_string()),
+ ),
+ (
+ "content.body".to_string(),
+ SimpleJsonValue::Str("test message".to_string()),
+ ),
]
.into_iter()
.collect();
@@ -43,6 +53,7 @@ fn bench_match_exact(b: &mut Bencher) {
true,
vec![],
false,
+ false,
)
.unwrap();
@@ -63,9 +74,18 @@ fn bench_match_exact(b: &mut Bencher) {
#[bench]
fn bench_match_word(b: &mut Bencher) {
let flattened_keys = [
- ("type".to_string(), "m.text".to_string()),
- ("room_id".to_string(), "!room:server".to_string()),
- ("content.body".to_string(), "test message".to_string()),
+ (
+ "type".to_string(),
+ SimpleJsonValue::Str("m.text".to_string()),
+ ),
+ (
+ "room_id".to_string(),
+ SimpleJsonValue::Str("!room:server".to_string()),
+ ),
+ (
+ "content.body".to_string(),
+ SimpleJsonValue::Str("test message".to_string()),
+ ),
]
.into_iter()
.collect();
@@ -82,6 +102,7 @@ fn bench_match_word(b: &mut Bencher) {
true,
vec![],
false,
+ false,
)
.unwrap();
@@ -102,9 +123,18 @@ fn bench_match_word(b: &mut Bencher) {
#[bench]
fn bench_match_word_miss(b: &mut Bencher) {
let flattened_keys = [
- ("type".to_string(), "m.text".to_string()),
- ("room_id".to_string(), "!room:server".to_string()),
- ("content.body".to_string(), "test message".to_string()),
+ (
+ "type".to_string(),
+ SimpleJsonValue::Str("m.text".to_string()),
+ ),
+ (
+ "room_id".to_string(),
+ SimpleJsonValue::Str("!room:server".to_string()),
+ ),
+ (
+ "content.body".to_string(),
+ SimpleJsonValue::Str("test message".to_string()),
+ ),
]
.into_iter()
.collect();
@@ -121,6 +151,7 @@ fn bench_match_word_miss(b: &mut Bencher) {
true,
vec![],
false,
+ false,
)
.unwrap();
@@ -141,9 +172,18 @@ fn bench_match_word_miss(b: &mut Bencher) {
#[bench]
fn bench_eval_message(b: &mut Bencher) {
let flattened_keys = [
- ("type".to_string(), "m.text".to_string()),
- ("room_id".to_string(), "!room:server".to_string()),
- ("content.body".to_string(), "test message".to_string()),
+ (
+ "type".to_string(),
+ SimpleJsonValue::Str("m.text".to_string()),
+ ),
+ (
+ "room_id".to_string(),
+ SimpleJsonValue::Str("!room:server".to_string()),
+ ),
+ (
+ "content.body".to_string(),
+ SimpleJsonValue::Str("test message".to_string()),
+ ),
]
.into_iter()
.collect();
@@ -160,6 +200,7 @@ fn bench_eval_message(b: &mut Bencher) {
true,
vec![],
false,
+ false,
)
.unwrap();
|